body {
    width: 100vw;
    height: 100vh;
    background-color: rgb(231, 219, 179);
    z-index: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position:fixed;
    color: black;
}

p {
    font-size: 2em;
    color: rgb(0, 0, 0);
    font-family: "helvetica";
    text-align: center;
}

.header {
    width: 100vw;
    height: 5%;
    display: inline-flex;
    align-items: center;
    margin-top: 2em;
    justify-content: space-around;
    justify-items: right;
    z-index: 1;
    position: fixed;
    animation: fade-down 0.5s;
}

#logo {
    min-width: none;
    max-width: 80%;
    height: 63px;
    position: absolute;
    left:20px;
    cursor: pointer;
    shape-rendering: crispEdges;
}

#logo_mobile {
    display: none;
    min-width: none;
    max-width: 80%;
    position: absolute;
    left:20px;
    shape-rendering: crispEdges;
}

#burger {
    display: none;
}

#booknow {
    height: 28px;
}

#menuside {
    height: inherit;
    display:inline-flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    justify-content: space-evenly;
    position: fixed;
    right: 20px;
}

#menuside p, img {
    font-weight: bold;
    margin: 5px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: rgb(0, 0, 0);
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 40%;
    font-family: "helvetica";
    font-weight: bold;
    text-decoration: none;
}

ul li {
    text-decoration: none;
    color: inherit;
    font-size: 1.2em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "helvetica";
    font-weight: bold;
}

ul li:link, li:visited  {
    color: inherit;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1.2em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "helvetica";
    font-weight: bold;
}

a {
    color: inherit;
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    cursor: pointer;
    font-family: "helvetica";
    font-weight: bold;
}

#flavor{
    font-size: 2em;
    margin-left: 5%;
    margin-right: 5%;
    font-family: "smalltext";
}

#text {
    font-size: 5em;
    margin-left: 5%;
    margin-right: 5%;
    font-family: "beaufort";
    font-style: italic;
}

@font-face {
    font-family: "beaufort-title";
    src: url("fonts/Beafort/Beaufort-Italic.ttf");
}
@font-face {
    font-family: "intervogue";
    src: url("fonts/Intervogue/intervoguealt-med.otf");
}
@font-face {
    font-family: "smalltext";
    src: url("fonts/Intervogue/regoblique.otf");
}

@keyframes fade-down {
    0%{
        opacity: 0;
        transform: translateY(-30px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fade-up {
    0%{
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100%{
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

.fade-in {
    opacity: 0;
    transition: opacity 650ms ease-in;
}

.fade-in.appear {
    opacity: 1;
}

#profile-section {
  display: flex;
  flex-direction: row;
  align-items: left;
  margin-top: 9%;
  margin-left:60px;
  overflow: hidden;
  z-index: 1;
}

#name-list {
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.name {
  cursor: pointer;
  font-size: 3rem;
  opacity: 1;
  transition: all 0.6s ease;
    font-family: "beaufort-title";
    font-style: italic;
}

.name.selected {
  font-size: 3rem;
  margin-left: 60px;
  opacity: 1;
}

.name.dimmed {
  font-size: 2rem;
  opacity: 0.4;
}

#profile-display {
  display: flex;
  gap: 20px;
  z-index: 1;
}

#title {
    position:absolute;
    font-size: 4rem;
    right:10%;
    top: 10%;
    z-index: 1;
    font-family: "beaufort-title";
    font-style: italic;
}

#image {
  display: none;
  position:absolute;
  width: 40%;
  height: 40%;
  object-fit: cover;
  border-radius: 10px;
  right:10%;
  bottom: 10%;
  z-index: 1;
}

#description {
    font-size: 2rem;
    position:absolute;
  object-fit: cover;
  border-radius: 10px;
  top:25%;
  right:10%;
  max-width: 400px;
  text-wrap: wrap;
  text-align: right;
  font-family: "helvetica";
    font-weight: bold;
    text-transform: uppercase;
}

#burger {
    display: none;
}

.switch {
    animation: fade-in 0.5s;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen and (max-width: 900px) {
    ul, #booknow, #lang {
        display: none;
    }
    #logo{
        display: none;
    }
    #logo_mobile, #burger {
        height: 57px;
        display: block;
    }
    #burger{
        height: 28px;
        margin-right: 10px;
        margin-top: 20px;
    }
    #flavor{
        font-size: 1.2em;
        margin-left: 5%;
        margin-right: 5%;
    }
    #text{
        font-size: 3em;
        margin-left: 5%;
        margin-right: 5%;
    }
    #name-list{
        display: flex;
        flex-direction: column;
        margin-left: 0px;
        margin-top: 20%;
        gap: 15px;
    }
    .name {
        font-size: 2.5em;
    }
    .name.dimmed {
        font-size: 1em;
        opacity: 0.4;
    }
    .name.selected {
        font-size: 2.5em;
        margin-left: 5%;
        opacity: 1;
    }
    #title {
        display: none;
    }
    #description {
        font-size: 1rem;
        bottom: 13%;
        top: auto
    }
    #image {
        bottom: 20%;
        width: 80%;
        height: 20%;
    }
}