@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@500&display=swap');

* {
    font-family: "Kanit", "sans-serif";
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.background {
    background-image: url("../images/background.png");
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-size: 100%;
    position: fixed;
    background-repeat: no-repeat;
}


.header {
    position: fixed;
    top : 0;
    left:0;
    width: 100%;
    padding: 20px 100px;
    /* background: #e59ff5d4; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 40px;
    font-weight: 600;
    text-decoration: none;
    color: hsl(58, 100%, 50%);
}

.tophid {
    z-index: -100;
    position: fixed;
    background-image: url("../images/background.png");
    top: 0;
    left:0;
    width: 100%;
    padding: 50px 100px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.navbar a{
    position: relative;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    margin-left: 110px;
}

.navbar.Informations::before {
    background: hsl(58, 100%, 50%);
    width: 100%;
} 

.navbar a::before {
    position: absolute;
    content: '';
    background:#fff;
    width: 0;
    height:3px;
    top:100%;
    left:0;
    transition: .3s;
}

.navbar a:hover::before {
    width:100%;
}

.informations div h1
{
    font-size: 30px;
    position: absolute;
    top: 5%;
    left: 5%;
    color: #fff;
}

.informations aside {
    min-width: 80%;
    height: 590px;
    top: 100px;
    left: 5%;
    margin-bottom: 95px;
    display: block;
    background-color: #000000;
    position: absolute;
    border: 5px solid #ffffff  ;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.6);
    animation: fade-right 0.5s;
}


.informations div p {
    font-size: 20px;
    color: #fff;
    top: 15%;
    left: 5%;
    position: absolute;
    width: 90%;
    text-align: justify;

    -webkit-line-clamp: 25;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes fade-left
{
    0% {
        opacity: 0;
        transform: translateX(-30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}
@keyframes fade-right
{
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
}

@keyframes rotation
{
    0% {
        opacity: 0;
        transform: rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

.icons {
    animation: fade-left 0.5s;
}

.facebookIcon 
{
    position: absolute;
    top: 300px;
    left: 90%;
    width: 90px;
    height: 90px;
    background-size: 100%;
}

.itchIcon 
{
    position: absolute;
    top: 175px;
    left: 90%;
    width: 90px;
    height: 90px;
    background-size: 100%;
}

.githubIcon 
{
    position: absolute;
    top: 425px;
    left: 90%;
    width: 90px;
    height: 90px;
    background-size: 100%;
}

.youtubeIcon 
{
    position: absolute;
    top: 515px;
    left: 88%;
    width: 150px;
    height: 150px;
    background-size: 100%;
}

::-webkit-scrollbar {
    width: 0.5em;
}

::-webkit-scrollbar-track {
    background: #0b344d;
}

::-webkit-scrollbar-thumb {
    background: rgb(15, 145, 119);
    border-radius: 25px;
}
