html, body{
    margin: 0;
    padding: 0;
    height: 100%
}
body{
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: lightslategrey;
    color: white;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
}

h1{
    font-weight: 300;
    font-size: 3rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: -0.02em;
}
h1 span{
    font-weight: 400;
    color: rgba(255,255,255,1);
}
h2{
    border-radius: 50%;
    background-color: white;
    color: black;
    padding: 0.5em;
    font-size: 8em;
    margin: 0;
    width: 140px;
    height: 140px;
}

/***************
MEDIA QUERIES
****************/
@media screen and (max-width: 1024px)
{

}

@media screen and (max-width: 768px)
{

}

@media screen and (max-width: 420px)
{

}




