@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@200&display=swap');

@keyframes linkSize {
    from {
       font-size: 40px;
    }
    to {
      font-size: 80px;
    }
}

body {
    background-color: black;
    font-family: "Playpen Sans"
}

h1 {
    color: white;
    font-size: 40px;
}

p {
    color: white;
    font-size: 20px;
}

a {
    color: white;
    text-decoration: none;
    font-size: 40px;
    transition: all .2s ease-in-out;
}

a:hover {
    font-size: 50px;
}
