@font-face {
    font-family: Manrope;
    src: url(Manrope-VariableFont_wght.ttf);
}

body{
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1{
    font-family: Manrope;
    margin: 0;
}
p{
    font-family: Manrope;
    font-weight: lighter;
}

#centerdiv{
    height: 300px;
    max-width: 600px;
    width: 90%;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

button{
    padding: 12px;
    font-family: Manrope;
    font-weight: bold;
    border: 0cap;
    border-radius: 80px;
    background-color: lightskyblue;
}
button:hover{
    background-color: lightblue;
}
#downloadButton{
    padding: 12px;
    font-family: Manrope;
    font-weight: bold;
    border: 0cap;
    border-radius: 80px;
    background-color: rgb(211, 238, 255);
}
#downloadButton:hover{
    background-color: rgb(236, 250, 254);
}

textarea{
    margin: 15px;
    margin-bottom: 60px;
    resize: none;
    font-family: Manrope;
    font-size: 16px;
    height: 24px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}