@font-face {
    font-family: Figtree;
    src: url("/static/fonts/Figtree.ttf");
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root{

}

body{
    font-family: "Figtree", sans-serif;
    color: #E5E5E5;
    background-color: #202643;
}

main{
    height: 100dvh;
    width: 100dvw;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}

.mailto{
    background-color: #FFCC00;
    color: #202643;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: .75rem 1rem;
    border-radius: .75rem;
    margin-top: 1rem;
    transition: transform .2s ease-in-out;
}

.mailto:hover{
    transform: scale(1.05);
}