@import url('https://fonts.googleapis.com/css?family=Tangerine');

:root {
    --tablet-width: 767px; /* Common tablet breakpoint (portrait) */
}

html {
    font-size: 62.5%; /* 1rem = 10px */
}

* {
    box-sizing: border-box;
}

body::-webkit-scrollbar {
    width: 7px;
    background: #000;
}
body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(156, 154, 154, 0.527);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 1.6rem; /* Equivalent to 16px */
    line-height: 1.6;
    position: relative;
    background: #000;
}

nav {
    display: flex;
    justify-content: space-between;
    /* border: 1px solid; */
    background: gray;
    clip-path: blur(30px);
    width: 100%;
    height: 70px;
}

nav ul {
    width: 100%;
    /* border: 1px solid aqua; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

nav ul li {
    margin: 0 10px; 
}

nav ul li a {
    text-decoration: none;
    color: white;
    /* border: 1px solid; */
    padding: 10px;
    margin: 0;
}

.right, .left, .middle {
    /* border: 1px solid white; */
    padding: 10px;
    margin: 0;
    display: flex;
    justify-content: center;
}

.sideMenu {
    height: 70px;
    width: 100%;
    background: gray;
    position: relative;
    display: none;
}

.sideMenu button {
    position: absolute;
    right: 0;
    height: 100%;
    width: 55px;
    background: transparent;
    border: none;
}

.sideMenu button img {
    width: 100%;
    height: 50%;
}

.navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar a {
    text-decoration: none;
    color: white;
    padding: 0 15px;
}

.menu {
    display: none;
    padding-top: 5%;
}

.menu a {
    padding: 10px 0;
    margin: 10px 0;
    background: transparent;
    color: black;
    font-size: 1.2em;
    border: none;
    text-align: center;
    text-decoration: none;
}

.menu a:nth-child(1){
    margin-top: 20%;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}

#navbar-guest {
    display: none;
}
#navbar-username {
    display: none;
}

.header {
    width: 100%;
    height: 70vh;
    display: flex;
    /* border: 1px solid white; */
    /* background-image: url('../images/library.png'); */
}

.title {
    font-size: 100px;
    /* animation: build 2s ease-in-out infinite; */
}

.header div {
    flex: 1;
    /* border: 1px solid white; */
}

.header a {
    transition: all 0.5s ease;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(to right, orange, rgb(252, 206, 3));
    width: 150px;
    text-align: center;
    /* transform: rotateZ(-10deg); */
}

.header a:hover {
    box-shadow: 0 0px 20px orange, 0 0px 30px rgb(255, 0, 0);
    transition: all 0.2s ease;
    color: white;
}

.header h1 {
    margin: 0;
    padding: 10px;
    font-family: 'Tangerine',sans-serif;
    color: rgb(241, 171, 65);
    text-shadow: 0 0px 20px orange, 0 0px 40px rgb(255, 0, 0);
    line-height: 1em;
    text-align: center;
}

.wavy {
    background: #000;
    color: white;
    width: 100%;
    height: 300px;
    text-align: center;
    position: relative;
    clip-path: polygon(
        0% 0%,   /* Top-left corner */
        100% 0%, /* Top-right corner */
        100% 85%, /* Start of wave at the bottom-right */
        75% 90%,  /* Peak of wave on the right */
        50% 85%,  /* Dip of wave in the center */
        25% 90%,  /* Peak of wave on the left */
        0% 85%    /* Start of wave at the bottom-left */
    );
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wavy p {
    margin: 0 30px;
}
.sewavy p {
    margin: 0 30px;
}

.sewavy {
    width: 100%;
    height: 300px;
    background: rgb(204, 185, 170);
    clip-path: polygon(
        0% 0%,   /* Top-left corner */
        25% 5%, /* Top-right corner */
        50% 0%, /* Start of wave at the bottom-right */
        75% 5%,  /* Peak of wave on the right */
        100% 0%,  /* Dip of wave in the center */
        100% 100%,  /* Peak of wave on the left */
        0% 100%    /* Start of wave at the bottom-left */
    );
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    padding: 0;
    margin: 0;
    position: relative;
}

.image-container::before {
    content: "";
    position: absolute;
    width: 104%;
    height: 102%;
    background: linear-gradient(45deg, red, orange,blue,white);
    z-index: -1;
    left: -2%;
    top: -2%;
    border-radius: 10px;
}

.image-container::after {
    content: "$10.99";
    position: absolute;
    width: auto;
    height: auto;
    padding: 10px;
    background: white;
    color: black;
    z-index: 1;
    left: 85%;
    top: 0%;
    transform: rotateZ(45deg);
    border-radius: 50%/50%;
}

h2 {
    font-size: 2em; /* Adjust font size as needed */
    font-weight: bold; /* Make the text bold */
    background-image: linear-gradient(to right, red, orange,blue,white); /* Linear gradient */
    -webkit-background-clip: text; /* Clip the background to the text */
    background-clip: text;
    color: transparent; /* Make the text transparent so the background shows through */
    text-align: center;
  }

  .logout {
    display: none;
  }

@media only screen and (max-width: 767px) {
    nav {
        display: none;
    }

    .sideMenu {
        display: block;
        height: 55px;
    }

    .displayMenu{
        display: flex;
    }

    .menu {
        position: absolute;
        z-index: 10;
        left: -85%;
        top: 0;
        display: flex;
        flex-direction: column;
        background: #fff;
        width: 85%;
        height: 100vh;
        transition: left 0.4s ease-in-out;
        overflow-y: scroll;
    }

    .showMenu {
        left: 0;
    }

    .close {
        display: none;
    }

    .header {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    .title {
        font-size: 88px;
    }

    .header div:nth-child(2) {
        display: none;
    }

    .wavy p {
        margin: 0 10px;
    }

}

/* @media only screen and (min-width: 767px){
    @keyframes build {
        0% {
            transform: scale(0.9);
        }
        50% {
            transform: scale(1);
        }
        100% {
            transform: scale(0.9);
        }
    }
} */

.inward-rounded {
    width: 200px;
    height: 250px;
    background: #007bff;
    /* clip-path: path('M0%,0% L100%,0% Q75%,25% 50%,0% Q25%,25% 0%,0% Z'); */
    clip-path: path('M0,0 L200,0 L200,200 Q150,250 100,200 Q50,150 0,200 Z');
}