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

:root {
    font-size: 10px;
    --font-titles: 'Open Sans', sans-serif;
    --font-content: 'Merriweather', serif;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 20pt solid aquamarine;
}

div.sign {
    text-align: center;
    border: 20pt solid #66d9b2;
    padding: 2rem;
}

h1 {
    font-family: var(--font-titles);
    font-size: 6rem;
    font-weight: 100;
    margin-bottom: 2rem;
}

h1 b {
    font-weight: 700;
}

p, a {
    font-family: var(--font-content);
    font-size: 1.6rem;
}

a {
    text-decoration: none;
    border-bottom: 1pt dashed lightgrey;
    color: #4e996f;
}

a:hover {
    opacity: 0.5;
}