.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgb(0, 0, 19);
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 5;
    background-color: rgb(207, 243, 255);
    min-width: 0;
    height: clamp(2rem, 5.5vw, 10rem);
}
.left-section-header {
    display: flex;
    align-items: center;
    padding-left: clamp(0.1rem, 0.6vw, 0.7rem);
    min-width: 0;
    margin: 0;
}
.menu-button, .cart-button {
    padding: clamp(0.1rem, 0.8vw, 0.8rem) clamp(0.3rem, 1vw, 1rem);
    white-space: nowrap;
}
.middle-section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    font-size: clamp(1.5rem, 4vw, 7.5rem);
    font-weight: 600;
    padding: 0 0 clamp(0.2rem, 1vw, 1rem) 0;
    color: lightpink;
    -webkit-text-stroke: 1px rgb(228, 146, 160);
    min-width: 0;
}
.right-section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: clamp(0.1rem, 0.6vw, 0.7rem);
    min-width: 0;
    margin: 0;
}

.menu-button, .cart-button {
    background-color: lightpink;
    border: solid 1px rgb(228, 146, 160);
    border-radius: 3rem;
    font-size: clamp(0.8rem, 1.5vw, 3.5rem);
    font-family: sniglet, arial;
}
.cart-button {
    margin-right: clamp(0.5rem, 2vw, 3rem);
    text-decoration: none;
}
.cart-button:hover {
    background-color: rgb(255, 194, 203);
}
@media (max-width: 480px) {
  .middle-section-header {
    font-size: clamp(1.2rem, 4vw, 3rem);
  }
}
.menu-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: rgb(207, 243, 255);
    border: solid 2px rgb(141, 30, 49);
    border-bottom-right-radius: clamp(1.5rem, 4.5vw, 7rem);
    line-height: 3.5;
    font-size: clamp(0.8rem, 1.7vw, 3.5rem);
    padding: 0 0.4rem;
}
.menu-nav a:link {
    color: rgb(160, 37, 57);
}

.menu-nav a:visited {
  color: rgb(160, 37, 57);  
}

.menu-nav a:hover {
  color: rgb(68, 5, 16);     
}

.menu-nav a:active {
  color: rgb(218, 80, 103);  
}

.menu-nav.open  {
    display: block;
}
.menu-nav li {
    border-bottom: solid 2px rgb(141, 30, 49);
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.menu-nav li:last-of-type {
    border: none;
}
ul {
    padding: 0;
    margin: 0;
}
.close-menu {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(141, 30, 49);
    color: white;
    border: none;
    border-bottom-right-radius: 0.8rem;
    font-size: clamp(0.6rem, 1.5vw, 3.5rem);
    font-family: sniglet, arial;
}
.close-menu:hover {
    background-color: rgb(161, 44, 64);
}
