@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

h1,
h2,
h3,
h4,
h5,
p,
a {
    font-family: 'Quicksand', sans-serif;
}

h1 {
    font-size: 6vw;
    font-weight: 800;
}

h2 {
    font-size: 4vw;
    font-weight: 700;
}

h3 {
    font-size: 3vw;
    font-weight: 600;
}

h4 {
    font-size: 2vw;
    font-weight: 500;
}

p {
    font-size: 2.4vw;
    font-weight: 300;
}

h5 {
    font-size: 1vw;
    font-weight: 100;
}

a {
    font-size: 1.7vw;
}

html {
    scroll-behavior: smooth;
    transition: 2s;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0px 0px;
    background-color: rgb(226, 232, 236);
}

body::-webkit-scrollbar {
    display: none;
}

.lherror {
    line-height: 25px;
}

#header {
    background-color: rgba(235, 239, 255, 0.973);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    position: sticky;
    top: 0px;
    left: 0px;
}

#header .logo {
    width: 110px;
    padding-top: 10px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar li {
    list-style: none;
    padding: 0px 20px;
    position: relative;
}

.navbar li a {
    text-decoration: none;
    font-weight: 500;
    color: rgb(20, 20, 20);
    transition: 0.3s;
}

.navbar li a:hover,
.navbar li a.active {
    color: rgb(248, 173, 103);
}

.navbar li a.active::after {
    content: "";
    width: 30%;
    height: 2px;
    background: rgb(248, 173, 103);
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#header a.icon {
    display: none;
}

/* Style the navigation menu */
@media only screen and (max-width: 800px) {

    #header {
        overflow: hidden;
        background-color: rgb(194, 182, 173);
        position: relative;
    }

    /* Hide the links inside the navigation menu (except for logo/home) */
    #header .navbar {
        display: none;
    }

    /* Style navigation menu links */
    #header a {
        color: white;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        display: block;
    }

    /* Style the hamburger menu */
    #header a.icon {
        background: rgb(248, 173, 103);
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }

    /* Add a grey background color on mouse-over */
    #header a:hover {
        background-color: #ddd;
        color: black;
    }

    /* Style the active link (or home/logo) */
    .act {
        background-color: #04AA6D;
        color: white;
    }
}

.btn-shine {
    transform: translate(-50%, -50%);
    color: #ffffff;
    background: linear-gradient(to right, rgb(20, 20, 20) 0, white 10%, rgb(20, 20, 20) 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 12s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
    white-space: nowrap;
}

@keyframes shine {
    0% {
        background-position: 0;
    }

    60% {
        background-position: 180px;
    }

    100% {
        background-position: 180px;
    }
}

#hero {
    background-image: url("/assets/bunnypfp.png");
    background-repeat: no-repeat;
    height: 90vh;
    width: 100%;
    background-size: 600px;
    background-position: top 100% right 15%;
    padding: 0 80px;
    display: block;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h2 {
    color: rgb(27, 26, 26);
}

#hero h4 {
    color: rgb(27, 26, 26);
    padding-top: 50px;
}

#hero h1 {
    color: rgb(27, 26, 26);
}

#hero button {
    background-color: rgb(248, 173, 103);
    border-radius: 90px;
    height: 50px;
    width: 180px;
    border-width: 0px;
    color: rgb(255, 255, 255);
    transition: 3s;
    font-size: 16pt;
}

#hero button:hover {
    background-color: rgb(252, 187, 126);
    cursor: grab;
}

#hero button {
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}

#hero button:hover {
    top: 10px;
}

#first-banner {
    background-color: rgb(252, 204, 160);
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(27, 26, 26);
}

#reviews {
    padding-top: 80px;
}

/* FOOTER AND END */

#footer {
    background-color: rgba(235, 239, 255, 0.973);
}

#footer .contain {
    display: inline-block;
    text-align: left;
}

#footer .contain .col {
    display: inline-block;
    max-width: 100%;
    row-gap: 20px;
    column-gap: 20px;
    padding-left: 80px;
    padding-top: 50px;
    padding-bottom: 50px;
}

#footer h4 {
    font-size: 14pt;
    color: rgb(248, 173, 103);
}

#footer h5 {
    font-size: 10pt;
}

#footer ul {
    list-style: none;
    list-style-type: none;
}

#footer a {
    text-decoration: none;
    color: black;
    transition: 0.2s;
}

#footer a:hover {
    color: rgb(255, 123, 0);
}

#footer img {
    padding-left: 160px;
}

.RIGHTS {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    padding-bottom: 20px;
    margin-left: 80px;
    color: rgba(0, 0, 0, 0.473);
}

.RIGHTS a {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 12pt;
    color: rgba(0, 0, 0, 0.473);
}

/* FOOTER END */