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

*{
    text-align: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

body{
    background: #ff69b4;
    height: 100%;
}

h1{
    font-family: "Bungee", sans-serif;
    font-weight: 400;
    font-size: 3rem;
    color: white;
}

@media (max-width: 600px){
    h1{
        font-size: 2rem;
    }
}

a{
    font-family: "Lobster", sans-serif;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    background: lightblue;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    display: inline-block;
    width: fit-content;
    transition: 0.5s;
    margin: 5px;
}

@media (max-width: 600px){
    a{
        font-size: 2rem;
        padding: 0.2rem 0.9rem;
    }
}

@media (max-width: 350px){
    a{
        font-size: 1.5rem;
        padding: 0.2rem 0.7rem;
    }
}


a:hover{
    transform: scale(1.5);
    background: cornflowerblue;
    opacity: 1;
}
