@import url('https://fonts.googleapis.com/css2?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');

body{
    background-color: #000;
    color: #FFF;
    font-family: 'Poppins', 'sans-serif';
    overflow: hidden;
}

a{
    color: #FFF;
}

/* Animations */
@keyframes heartbeat
{
  0%
  {
    transform: scale( .75 );
  }
  20%
  {
    transform: scale( 1 );
  }
  40%
  {
    transform: scale( .75 );
  }
  60%
  {
    transform: scale( 1 );
  }
  80%
  {
    transform: scale( .75 );
  }
  100%
  {
    transform: scale( .75 );
  }
}
/* Einde Animations */

.withlove{
    color: #FFF;
    text-decoration: none;
}

.withlove i {
    animation: heartbeat 1.2s infinite;
}

footer{
    /* position: absolute;
    bottom: 0; */
    width: 137px;
    margin: -35px auto 0 auto;
}

div{
    width: 50%;
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1{
    text-align: center;
    font-size: 80px;
    margin-bottom: 20px;
    margin-top: 0;
}


h2{
    text-align: center;
    font-size: 30px;
    margin-bottom: 0;
}

h3{
    text-align: center;
}

@media screen and (max-width: 800px){
    div{
        width: 70%;
    }
    h1{
        font-size: 60px;
    }
    h2{
        font-size: 23px;
    }
}

@media screen and (max-width: 550px){
    div{
        width: 90%;
    }
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 16px;
    }
}

@media screen and (max-width: 350px){
    h1{
        font-size: 30px;
    }
    h2{
        font-size: 16px;
    }
}