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

html,
body{
    width:100%;
    height:100%;
}

body{

    display:flex;
    justify-content:center;
    align-items:center;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    font-family:"Inter", sans-serif;

    overflow:hidden;

    transition:background-image .6s ease;
}

#overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.18);

    z-index:0;
}

main{

    position:relative;

    z-index:1;

    text-align:center;

    color:white;

    text-shadow:
        0 2px 12px rgba(0,0,0,.6);
}

h1{

    font-family:"Cormorant Garamond", serif;

    font-size:5rem;

    font-weight:500;

    letter-spacing:.04em;

    margin-bottom:.5rem;
}

.tagline{

    font-size:1rem;

    letter-spacing:.18em;

    text-transform:uppercase;

    opacity:.95;

    margin-bottom:2.5rem;
}

.email{

    color:white;

    text-decoration:none;

    font-size:.95rem;

    border-bottom:1px solid rgba(255,255,255,.5);

    padding-bottom:.15rem;

    transition:.25s;
}

.email:hover{

    border-color:white;

    opacity:.8;
}

@media(max-width:700px){

    h1{

        font-size:3.5rem;
    }

    .tagline{

        font-size:.8rem;
    }

}