html {
    background: linear-gradient(to bottom,#1F222A,#2A1F2A);
    background-attachment: fixed;
    color: #C7B8FF;
    font-family: Roboto;
}

body {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 61px;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#logo {
    margin: 0;
    @media(max-width: 500px) {
        height: 45px;
    }
}

#description {
  font-weight: 300;
  font-family: Roboto;
  @media(max-width: 500px) {
    font-size: 16px;
  }
  @media(min-width: 500px){
      font-size: 22px;
  }
  margin: 0;
}

nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

article.menu {
    width: 300px;
    height: 100px;
    padding: 15px;
    font-size: 20px;
    text-decoration: none;
}

header.menu {
    display: flex;
    flex-direction: row;
    justify-content: start;
    margin: 0 0 15px 0;
}

h1.menu {
    margin: 0;
    font-family: Roboto;
    font-size: 20px;
    text-decoration: none;
}

svg.menu path {
    fill: #C7B8FF;
    transition: fill 0.3s;
}

a.menu {
    text-decoration: none;
    color: inherit;
    display: block;
    border: solid #C7B8FF 2px;
    transition: border-color, color 0.3s;
}
a.menu:hover {
    color:#FFC4D7;
    border-color: #FFC4D7;
    svg.menu path {
        fill: #FFC4D7;
    }
}

section.menu {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 15px;
}

p:last-child {
    margin: 0;
}