* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #232323;
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background-color: #232323;
}

/* NAV */

nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 100px;
    align-items: center;
    position: absolute;
    padding: 10px 50px;
    z-index: 999;
}

.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #ffffff;
}

nav .logo img {
    width: 60px;
    margin-right: 20px;
}

nav .logo h2 {
    font-size: 20px;
    font-weight: 500;
}

nav .logo h2 span {
    color: #ffffff;
}

nav a.btn {
    background: transparent;
    border: 2px solid #00c9ff;
    color: #ffffff;
    display: inline-block;
    padding: 10px 0;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    margin-left: 20px;
    font-size: 14px;
    width: 150px;
    transition: all 0.4s ease;
}

nav a.btn:hover {
    transform: scale(1.06);
    color: #232323;
    background: #ffffff;
    border: none;
}

@media screen and (max-width: 1000px){
    nav{
        padding: 0 20px;
    }
    nav .logo img{
        display: none;
    }
}

/* BANNER */

.banner {
    justify-content: center;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    position: relative;
}

.banner .onbanner {
    display: flex;
    justify-content: space-between;
    width: 1400px;
    align-items: center;
}

.banner .left {
    
}

.banner .left h1 {
    color: #ffffff;
    font-size: 60px;
    letter-spacing: 5px;
}

.banner .left h1 span {
    color: #ffffff;
}

.banner .left p{
    color: #ffffff;
    font-size: 20px;
    margin: 40px 0;
}

.banner .right {
    width: 650px;
}

.banner .right img {
    width: 100%;
}

.banner .buttons {
    display: flex;
    justify-content: flex-start;
}

.banner .buttons a.btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 20px;
    width: 200px;
    text-align: center;
    font-weight: 700;
    margin: 0 20px;
    transition: all 0.4s ease;
}

.banner .buttons a.btn:nth-child(1) {
    margin-left: 0;
}

.banner .buttons a.btn:hover {
    color: #232323;
    background: #ffffff;
    border: none;
    transform: scale(1.06);
}


.animation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    letter-spacing: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 15px;
}
.animation .arrow {
    margin-bottom: 10px;
    animation: trans 2s ease infinite;
}

@keyframes trans {
    0%{
        transform: translateY(-10px);
        opacity: 1;
    }
    100%{
        transform: translateY(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 1500px) {
    .banner .onbanner {
        width: 100%;
        padding: 0 20px;
    }
}
@media screen and (max-width: 1000px) {
    .banner .onbanner {
        flex-direction: column;
        justify-content: center;
        margin-top: 150px;
        text-align: center;
    }
    .banner .buttons {
        display: flex;
        justify-content: center;
    }
    .banner {
        height: auto;
    }
    .banner .right {
        margin-top: 70px;
    }
    .animation {
        display: none;
    }
}
@media screen and (max-width: 725px) {
    .banner .left { 
        width: 100%;
    }
    .banner .right {
        width: 100%;
    }
}
@media screen and (max-width: 550px) {
    .banner .buttons{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .banner .buttons a.btn {
        margin: 20px 0;
        width: 100%;
    }
    .banner .left h1 {
        font-size: 35px;
    }
    .banner .left p {
        font-size: 18px;
    }
}

/* DISCORD */

.discord {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0;
    min-height: 600px;
}

.discord .onbanner {
    display: flex;
    justify-content: center;
    width: 1400px;
    align-items: center;
}

.discord .left {
    width: 700px;
    margin-right: 80px;
}

.discord .right {
    width: 600px;
}

.discord .right h3 {
    color: white;
    font-size: 30px;
    letter-spacing: 3px;
}

.discord .right h3 span {
    color: #ffffff;
}

.discord .right p {
    font-size: 18px;
    color: #ffffff;
    margin-top: 40px;
    text-align: left;
    letter-spacing: 2px;
}

.discord .right p a {
    color: #ffffff;
    transition: all 0.4s ease;
}

.discord .right p a:hover {
    color: #ffffff;
}

@media screen and (max-width: 1500px) {
    .discord .onbanner{
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1000px) {
    .discord .onbanner{
       flex-direction: column-reverse;
        text-align: center;
    }
    .discord .right{
        margin-bottom: 50px;
        width: 100%;
    }
    .discord .right p{
        text-align: center;
    }
    .discord .left{
        width: 100%;
        margin: 0;
    }
}

/* FOOTER */

.footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    margin-top: -50px;
}

.footer p {
    color: #ffffff;
    margin-top: 3px;
    font-size: 15px;
}

.footer p a {
    color: white;
    transition: all 0.4s ease;
}

.footer p a:hover {
    color: #ffffff;
    border: none;
    font-size: +25px;
}

.footer h3 {
    color: white;
    font-size: 20px;
}

.footer h3 span {
    color: #ffffff;
}

.footer .social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.footer .social li {
    background: transparent;
    border: 2px solid #ffffff;
    width: 50px;
    height: 50px;
    color: #ffffff;
    display: flex;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
    transition: all 0.4s ease;
}

.footer .social li:hover {
    background: #ffffff;
    color: #232323;
    border: none;
    transform: scale(1.06);
}

.footer .social li .icon {
    color: #ffffff;
    font-size: 20px;
}

@media screen and (max-width: 1000px) {
    .footer {
        padding: 0 20px;
    }
}

@media screen and (max-width: 600px) {
    .footer {
        flex-direction: column;
        justify-content: center;
    }
}