@font-face {
    font-family: Jujutsu_Kaisen_Font;
    src: url("Jujutsu_Kaisen.ttf");
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Jujutsu_Kaisen_Font', sans-serif;
    list-style: none;
    text-decoration: none;
}

header{
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 9%;
    background: transparent;
}

/*body{
    background: #5caed9;
}*/

.logo{
    font-size: 30px;
    font-weight: 700;
    color: #F0FFFF;
}

.navlist{
    display: flex;
}

.navlist a{
    color: #F0FFFF;
    margin-left: 60px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55s ease;
}

.navlist a:hover{
    border-bottom: 2px solid #F0FFFF;
}

#menu-icon{
    color: #F0FFFF;
    font-size: 35px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

.gojo{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(245.59deg, #3276b0 0%, #104478 28.53%, #062945 75.52%);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

.gojo .gojo-img{
    padding-top: 15%;
}

section{
    padding: 0 19%;
}

.gojo-text h5{
    font-size: 35px;
    font-weight: 400;
    color: #F0FFFF;
    margin-top: 15px;
    margin-bottom: 35px;
}

.gojo-text h1{
    font-size: 90px;
    line-height: 1;
    color: #F0FFFF;
    margin: 0 0 45px;
}

.gojo-text h4{
    font-size: 25px;
    font-weight: 600;
    color: #F0FFFF;
    margin-bottom: 10px;
}

.gojo-text p{
    color: #F0FFFF;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
}

/*.gojo-img img{
    width: 500px;
    height: auto;
}*/

.gojo-text a{
    display: inline-block;
    color: #F0FFFF;
    background: #5caed9;
    border: 1px solid transparent;
    padding: 12px 30px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all .55s ease;
}

.gojo-text a:hover{
    background: transparent;
    border: 1px solid #F0FFFF;
    transform: translateX(8px);
}

.gojo-text a.manga{
    /*background: transparent;*/
    border: 1px solid #F0FFFF;
    margin-left: 20px;
}

.gojo-text a.manga i{
    vertical-align: middle;
    margin-right: 5px;
}

.gojo-text a.tv i{
    vertical-align: middle;
    margin-right: 5px;
}

.icon{
    position: absolute;
    top: 50%;
    padding: 0 9%;
    transform: translateY(-50%);
}

.icon i{
    display: block;
    margin: 26px 0;
    font-size: 24px;
    color: #F0FFFF;
    transition: all .50s ease;
}

.icon i:hover{
    color: #5caed9;
    transform: translateY(-5px);
}

.scroll-down{
    position: absolute;
    bottom: 6%;
    right: 9%;
}

.scroll-down i{
    display: block;
    padding: 12px;
    font-size: 25px;
    color: #F0FFFF;
    background: #5caed9;
    border-radius: 30px;
    transition: all .50s ease;
}

.scroll-down i:hover{
    transform: translateY(-5px);
}

@media (max-width: 1535px) {
    header{
        padding: 15px 3%;
        transition: .2s;
    }
    .icon{
        padding: 0 3%;
        transition: .2s;
    }
    .scroll-down{
        right: 3%;
        transition: .2s;
    }
}

@media (max-width: 1460px){
    section{
        padding: 0 12%;
        transition: .2s;
    }
}

@media (max-width: 1340px){
    .gojo-img{
        width: 100%;
        height: auto;
    }
    .gojo-text h1{
        font-size: 75px;
        margin: 0 0 30px;
    }
}