* {
    margin: 0;
    padding: 0;
}
body {
    width: 100dvw;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('./background.png');
    background-size: cover;
    background-position: center;
    font-family: 'Poppins', sans-serif;
}

main {
    /* color: #AB274F; */
    /* color: #B284BE; */
    /* color: #F2F3F4; */
    /* color: #F0F8FF; */
    color: #E3DAC9;
    text-align: center;
    margin-bottom: 150px;
}
h1{
    text-transform: uppercase;
}
a{
    color: inherit;
    text-decoration: none;
    &:hover, &:active{
        text-decoration: underline;
    }
}
