@font-face {
    font-family: 'GT America Expanded';
    src: url('GTAmerica-ExpandedThin.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

:root {
    --red-light: #944E61;
    --red-dark: #844355;
}

* {
    box-sizing: border-box;
}

body {
    position: relative;
    font-family: 'GT America Expanded';
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    align-items: stretch;
    flex-direction: column;
    opacity: 0;
    transition: opacity 800ms ease 200ms;
    background: #fff;
    background: radial-gradient(ellipse at center, rgba(148,78,97,0.4) 1%,rgba(175,123,137,0.4) 26%,rgba(255,255,255,0) 70%);
}

header {
    padding: 30px 0;
    text-align: center;
    width: 100%;
}

header img {
    width: 250px;
}

main {
    flex-grow: 1;
    font-size: 15vh;
    line-height: 0.9em;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

#text1,
#text2 {
    text-transform: uppercase;
    pointer-events: none;
}

footer {
    padding: 30px 0;
    text-align: center;
    width: 100%;
}

.contact-link {
    padding: 15px 60px;
    color: #fff;
    background-color: var(--red-dark);
    display: inline-block;
    text-decoration: none;
    transition: background-color 200ms ease;
}

.contact-link:hover {
    background-color: var(--red-light);
}


@media (min-width: 600px) {
    header,
    footer {
        padding: 70px 0;
    }
}