@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Reddit Sans", sans-serif;
    font-optical-sizing: auto;
}

body{
    background-color: #2D3250;
}

html{
    scroll-behavior: auto;
}

.header{
    height: 60px;
    width: 90%;
    background-color: #200E3A;
    box-shadow: 0 0 30px rgba(32, 14, 58, 1);
    top: 20px;
    left: 50%;
    transform: translate(-50%);
    border-radius: 10px;
    position: fixed;
    z-index: 1;
} 

.header .logo-nav{
    float: right;   
    padding: 0 30px;
    font-size: 24px;
    display: block;
}

.header .logo-nav h2{
    font-weight: 900;
    padding: 8px 0 8px;
    background: -webkit-linear-gradient(75deg,#FFE7C1, #F3CCF3, #E9A8F2, #DC84F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-menu{
    display: none;
}

.navbar{
    display: inline-block;
}

.navbar li{
    display: inline-block;
    position: relative;
    padding: 17px 25px 17px;
}

.navbar > li{
    display: inline-block;
}

.navbar li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
}

.navbar li a:hover, a:active{
    color: #435585;
}

.img-box{
    height: 350px;
    width: 70%;
    background-color: #200E3A;
    top: 200px;
    left: 50%;
    transform: translate(-50%);
    border-radius: 10px;
    position: relative;
    opacity: 0.5;
}

.img-box .img-image{
    width: 100%;
    height: 350px;
    border-radius: 10px;
    margin-top: 50px;
    background: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url("https://i.pinimg.com/originals/26/45/47/2645475a9eef90f4a1fe67b76ae7d9fa.gif") center center / cover no-repeat;;
}


.img-box .img-content p{
    font-size: 70px;
    font-family: "Dancing Script", cursive;
    font-weight: 700;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.content{
    width: 800px;
    max-width: 100%;
    padding: 400px 0 0 ;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.4;
    text-align: justify ;
}

.content .content-heading{
    text-align: center;
    font-size: 60px;
    color: #fff;
    font-family: "Dancing Script", cursive;
}

.content .content-subheading{
    text-align: center;
    padding: 20px 0 0;
    font-size: 30px;
    color: #fff;
    opacity: 0.6;
}

.content .content-main li{
    padding: 20px 0 0;
    font-size: 25px;
    color: #fff;
    margin-top: 25px;
    line-height: 1.4;
    text-align: justify;
    font-family: "Poppins", sans-serif;
}

.content .content-main li a{
    color: #BEADFA;
    text-decoration: none;
    font-size: 25px;
    font-weight: 900;
}

.content .content-main li a:hover{
    color: #DFCCFB;
}

.link{
    text-align: center;
    margin: 100px;
}

.link a{
    font-size: 45px;
    color: #ccc;
    padding: 0 20px 0;
}


.fa-square-facebook:hover{
    color: #0B60B0;
}

.fa-square-github:hover{
    color: #f5f5f5;
}

.fa-square-instagram:hover{
    color: #FC819E;
}

.fa-discord{
    font-size: 40px;
}

.fa-discord:hover{
    color: #38419D;
}

.footer{
    padding: 50px 0 100px ;
    color: #ccc;
    text-align: center;
}

.footer p{
    font-size: 20px;
    font-weight: 500;
}

::-webkit-scrollbar{
    display: none;
}

/* PC SUPPORT */
@media (max-width:1254px) {
    .img-box .img-content p{
        font-size: 55px;
    }
}

/* TABLET */
@media (max-width:1000px) {
    .navbar li a{
        padding: 0 10px;
    }

    .img-box{
        height: 300px;
        width: 70%;
    }

    .img-box .img-image{
        height: 300px;
    }

    .img-box .img-content p{
        font-size: 40px;
    }

    .content{
        width: 600px ;
    }
}

/* MOBILE */
@media (max-width: 740px) {
    .header{
        overflow: hidden;
    }

    .header .mobile-menu{
        position: absolute;
        color: #fff;
        line-height: 60px;
        padding: 0 20px;
        top: 0;
        right: 0;
        font-size: 25px;
        display: inline-block;
        cursor: pointer;
    }

    .header .logo-nav{
        display: none;
    }

    .navbar{
        display: inline-block;
        text-align: left;
    }

    .navbar > li{
        display: block;
    }

    .img-box{
        height: 200px;
        width: 75%;
        top: 250px;
    }

    .img-box .img-image{
        height: 200px;
        width: 100%;
    }

    .img-box .img-content p{
        font-size: 20px;
    }

    .content{
        width: 350px;
        padding: 400px 0 0 ;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
        line-height: 1.4;
    }

    .content .content-heading{
        font-size: 45px;
    }
    
    .content .content-subheading{
        font-size: 20px;
    }

    .content .content-main li, .content .content-main li a{
        font-size: 13px;
    }

    .link a{
        padding: 0 4px 0;
    }

    .fa-brands{
        font-size: 30px;
    }

    .fa-discord{
        font-size: 25px;
    }

    .footer p{
        font-size: 12px;
    }
}