html,body {
    /* overflow: hidden; */
    margin: 0;
    padding: 0;
    color: white;
    height: 100vh;
    background-color: #f4f4f4;
}

#main{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'Inter';
    height: 100vh;
}

.content{
    text-align: center;
    line-height: 1;
    color: #353535;
    padding: 0.35em;
    /* text-shadow: 0 0 20px rgb(134 0 224 / 90%); */
}

.content img {
    max-width: calc(100% - 2.5em);
    width: 30em;
    margin-bottom: 3em;
    padding: 1.5em 1em 1em 1.5em;
}

h1{
    font-weight: 300;
    font-size: 2.5em;
    position: relative;
    display: flex;
    justify-content: center;
}
h2{
    font-weight: 400;
    font-size: 1.5em;
}

h2::before{
    content: '✓';
    color: #21a365;
    font-size: 1em;
    padding-right: 0.3em;
}

/* h1:after{
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    width: 300px;
    background-color: white;
    box-shadow: 0 0 9px 2px rgb(134 0 224 / 70%);
    border-radius: 1px;
    bottom: -15px;
    opacity: 0.8;
} */

.contact {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.contact a {
    display: block;
}

a, a:active{
    text-decoration: none;
    color: white;
}

a {
    position: relative;
    padding: 1em;
    transition: 0.5s;
    color: #21a365;
    /* text-shadow: 0 0 10px black; */
}

a:before{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 10px;
    /*background-color: white;*/
    left: 20px;
    transition: 0.5s;
    opacity: 0.2;
}

a:hover{
    color: #107c41;
    /* text-shadow: 0 0 15px rgb(58, 143, 255); */
}

a:hover:before{
    width: 85%;
    opacity: 1;
    background-color: #107c41;
}

.contact{
    margin-top: 3em;
    font-size: 1.4em;
}