@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

body{
    background-color: #CDC1FF;
    text-align: center;
    font-family: "Sour Gummy", sans-serif;
}
h1{
    font-size: 2.5rem;
}
section{
    max-width: 60ch;
    margin: 2rem auto;
    font-weight: bold;
    font-size: 1.3rem;
}
a {
    border: none;
    padding: 0.3rem 1rem;
    border-radius: 10px;
    margin: 1rem 0.3rem;
    background-color: #BFECFF;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: #0000002b 2px 2px 2px;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in;
    text-decoration: none;
}
a:hover{
    box-shadow: #0000004d 4px 4px 4px;
}