*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.nav{
    position: fixed;
    width: 100%;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.084);
    z-index: 1;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.593);
}
.left-nav{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.left-nav p{
    font-size: 35px;
    font-weight: bold;
    background: linear-gradient(180deg, red, orange);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.right-nav{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 70px;
    align-items: center;
}
.right-nav a{
    text-decoration: none;
    color: black;
    font-size: 17px;
    padding: 5px;
}
.right-nav a:hover{
    color: rgba(255, 166, 0, 0.653);
}
.right-nav #menu{
    display: none;
}
.dropdown{
    display: none;
}
#last{
    margin-right: 30px;
    color: white;
    background-color: green;
    padding: 10px 30px;
    border-radius: 10px;
}
.home{
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(90deg, #F79D65 1%, rgba(0, 0, 0, 0.685));
    /*background-color: rgba(255, 166, 0, 0.762);*/
}
.left-home{
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.left-home #name{
    font-size: 90px;
    font-weight: 1000;
    color: white;
}
.left-home #description{
    font-size: 40px;
    font-weight: 500;
    color: white;
}
.links{
    display: flex;
    gap: 100px;
    font-size: 1.2em;
}
.links #yeah{
    color: white;
    justify-content: center;
    align-self: center;
}
.links #yeah:hover{
    text-decoration: underline;
}
.links #yes{
    background-color: green;
    border-radius: 10px;
    color: white;
    padding: 8px 18px;
    transition: linear 0.1s;
}
.links #yes:hover{
    color: black;
    background-color: white;
    transition-duration: 0.2s;
}
.ca{
    padding: 20px;
    background-color: white;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    gap: 10em;
    justify-content: center;
    align-items: center;
}
.ca i{
    font-size: 1.2em;
    color: black;
    cursor: pointer;
}
.right-home{
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
}
.right-home img{
    position: absolute;
    animation: bounce 3s ease-in-out;
    animation-iteration-count: infinite;
}
@keyframes bounce{
    0%{top: 200px;}
    50%{top: 220px;}
    100%{top: 200px;}
}
.first{
    display: flex;
    padding-inline: 30px;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
    background-color: rgb(255, 192, 203);
}
#deer{
    position: absolute;
    top: -150px;
    left: 10px;
}
#ghost{
    position: absolute;
    bottom: 150px;
    right: 0px;
}
#heyy{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    font-weight: 1000;
    color: white;
    padding: 10px;
}
.content{
    display: flex;
    justify-content: center;
    align-items: center;
}
#bee{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    width: 50%;
    line-height: 40px;
}
.chart{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(160deg, #fec89a, rgba(0, 0, 0, 0.852));
}
.chart p{
    margin-bottom:10px;
    font-size: 60px;
    font-weight: bold;
    color: white;
}
.socials{
    background-color: black;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    height: 40vh;
    color: white;
}
.how-to-buy{
    height: 100vh;
    background-color: #ffdab9;
}
.how-to-buy p{
    text-align: center;
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: bold;
    color: white;
}
.steps{
    display: grid;
    padding-inline: 40px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}
#ls{
    padding: 20px;
    line-height: 2em;
    height: auto;
    text-align: center;
    font-size: 1.2em;
    border-radius: 15px;
    background-color: white;
}
.list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.list img{
    cursor: pointer;
}
@media(max-width: 767px){
    .nav{
        padding: 15px;
    }
    .right-nav #menu{
        display: block;
        font-size: 25px;
    }
    .left-nav p{
        display: none;
    }
    .left-nav img{
        display: none;
    }
    .home{
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-evenly;
    }
    .home #name{
        font-size: 50px;
    }
    .left-home {
        display: flex;
        gap: 30px;
    }
    .left-home #description{
        font-size: 20px;
    }
    .home img{
        width: 300px;
        height: 300px;
        animation: none;
        position: initial;
    }
    .ca{
        font-size: 14px;
        padding: 10px 18px;
        display: flex;
        gap: 3rem;
    }
    .qes{
        display: none;
    }
    .links{
        display: none;
        gap: 70px;
    }
    .links a{
        font-size: 16px;
    }
    .how-to-buy{
        height: 240vh;
    }
    .steps{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        align-items: center;
        justify-content: center;
    }
    #ls{
        line-height: normal;
        width: 90%;
        font-size: 17px;
        margin-left: 5%;
    }
    .how-to-buy p{
        font-size: 40px;
    }
    .first{
    display: none;
}
.dropdown{
    display: none;
    background-color: white;
    z-index: 2;
    position: fixed;
    padding: 10px;
    width: 100%;
    transition: 0.4s ease-in-out;
}
#qwew{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
#qwew i{
    font-size: 20px;
    padding: 6px 10px;
    font-weight: 100;
}
.drop{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.drop a{
    padding: 10px;
    color: black;
}
.drop a:hover{
    color: orange;
}
}
@media (min-width: 768px) and (max-width: 900px){
     .nav{
        padding: 15px;
    }
    .right-nav #menu{
        display: block;
        font-size: 25px;
    }
    .left-nav p{
        display: none;
    }
    .left-nav img{
        display: none;
    }
    .home{
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-evenly;
    }
    .home #name{
        font-size: 50px;
    }
    .left-home {
        display: flex;
        gap: 30px;
    }
    .left-home #description{
        font-size: 20px;
    }
    .home img{
        width: 300px;
        height: 300px;
        animation: none;
        position: initial;
    }
    .ca{
        font-size: 14px;
        padding: 10px 18px;
        display: flex;
        gap: 3rem;
    }
    .qes{
        display: none;
    }
    .links{
        display: none;
        gap: 70px;
    }
    .links a{
        font-size: 16px;
    }
    .how-to-buy{
        height: 150vh;
    }
    .steps{
        display: grid;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }
    #ls{
        line-height: normal;
        width: 90%;
        font-size: 17px;
        margin-left: 5%;
    }
    .how-to-buy p{
        font-size: 45px;
    }
    .first{
    display: none;
}
.dropdown{
    display: none;
    background-color: white;
    z-index: 2;
    position: fixed;
    padding: 10px;
    width: 100%;
    transition: 0.4s ease-in-out;
}
#qwew{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
#qwew i{
    font-size: 20px;
    padding: 6px 10px;
    font-weight: 100;
}
.drop{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.drop a{
    padding: 10px;
    color: black;
}
.drop a:hover{
    color: orange;
}
}