@import url('https://fonts.googleapis.com/css2?family=Kanit: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&family=Radio+Canada:ital,wght@0,300..700;1,300..700&display=swap');

body {
    font-family: 'Kanit';
    font-size: 18px;


    background-color: hsl(210, 50%, 15%);
}


body::-webkit-scrollbar {
    display: none;
}


#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
    width: 50px;
    height: 50px;
    background-color: hsl(229, 100%, 50%);
    color: hsl(0, 0%, 100%);
    border: none;
    cursor: pointer;
    outline: none;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

#back-to-top-btn i {
    display: flex;
    justify-content: center;
    align-items: center;
}

#back-to-top-btn:hover {
    background-color: hsl(231, 84%, 38%);
}

/* Responsive Design */
@media (max-width: 992px) {


    #back-to-top-btn {
        font-size: 22px;
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }


    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    hr {
        margin: 30px 0;
    }

    #back-to-top-btn {
        font-size: 18px;
        width: 32px;
        height: 32px;
        bottom: 6px;
        right: 6px;
    }
}

/* Animations */
.btnEntrance {
    animation: btnEntrance 0.5s both;
}

/* fadeInUp Animation */
@keyframes btnEntrance {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.btnExit {
    animation: btnExit 0.25s both;
}

/* fadeOutDown Animation */
@keyframes btnExit {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

.AnimationText {
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}

@keyframes moveup {

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}



.minkub {

    margin: 0 auto;
    padding: 10px 1px 0px 10px;


    align-items: center;


}

.ran {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;

}

.ranText {
    flex: 1;
    padding: 30px;

}

.ranText p {
    font-size: 23px;
    margin-left: 12%;

    line-height: 1.6;

    word-spacing: 2px;


    hyphens: auto;


}

.ranText h2 {
    margin-left: 12%;
    font-size: 30px;
    margin-bottom: 30px;
}


.ranText li {
    margin-left: 12%;
    font-size: 21px;
    line-height: 1.6;
    hyphens: auto;
}


.pornhub {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.pornhub iframe {
    width: 600px;
    height: 400px;
    border: none;
    border-radius: 1px;
}

.pornhub img {
    width: 600px;
    height: 400px;
    border: none;
    border-radius: 10px;

}

.mamamu {
    margin-top: 100px;
}

/* Reverse layout for the second section */
.valorant {
    flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
    .ran {
        flex-direction: column;
    }

    .pornhub iframe {
        height: 250px;
    }
}







@media (max-width: 992px) {


    .pornhub img {
        width: 100%;
        height: auto;
    }

    #back-to-top-btn {
        font-size: 20px;
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .ToggleLanuuage {
        font-size: 12px;
        width: 70px;
    }
}


@media (max-width: 576px) {


    .pornhub img {
        width: 100%;
        height: auto;
    }

    #back-to-top-btn {
        font-size: 16px;
        width: 35px;
        height: 35px;
        bottom: 10px;
        right: 10px;
    }

    .ToggleLanuuage {
        font-size: 10px;
        width: 60px;
        margin-top: 50px;
    }

}