@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100&display=swap');

body{
    background-color: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Kanit', sans-serif;   
}

h1{
    font-size: 100px;
    
}

.container{
    padding-top: 5%;
    max-width: 800px;
    width: 100%;
    height:100%;
    margin: auto;
}

.header{
    justify-content: center;
    width: 50%;
    height: 50%;
    margin: auto;
    text-align: center;
    font-size: large;
}

.logo {
    width: 20%;
    align-items: center;
    justify-content: center;
}

.social{
    display: flex;
    margin-top: 30px;
    align-items: center;
   justify-content: center;
   filter: invert(100%) sepia(0%) saturate(7498%) hue-rotate(43deg) brightness(109%) contrast(96%);
}

.social > div{
  width: 5%;
  margin-left: 5px;
  margin-right: 5px;
  padding: 20px;
}

a:hover{
    filter: invert(9%) sepia(33%) saturate(1108%) hue-rotate(314deg) brightness(107%) contrast(89%);
}

footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #3e1f1e;
    color: white;
    text-align: center;
}


@media screen and (max-width: 800px) {

    .container{
        
        padding-top: 10%;
    }
    h1{
        font-size: 50px;
    }
    .header {
        width: 100%;
    }

    .social{
        text-align: center;
        width: 100%;
        margin: auto;
    }
    .social img{
        display: inline-block;
        height: 32px;
        width: 32px;
    }
  }