@font-face {
    font-family: "VTCCarrie";
    src: url("fonts/VTCCarrie-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "GT-America";
    src: url("fonts/GT-America-Mono-Light.woff2") format("woff2");
}

body {
    background-color: #006300;
    color: #ecffec;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow-y: auto;
}

@media (min-height: 700px) {
    body {
        overflow-y: hidden;
    }
}

.wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logo {
    text-align: center;
}

.logo img {
    width: 90px;
    height: 90px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

h1 {
    font-family: "VTCCarrie", sans-serif;
    font-weight: normal;
    color: #ffdbb5;
    text-transform: uppercase;
    font-size: 4em;
    margin: 0 20px;
}

p {
    font-family: "GT-America", sans-serif;
    font-size: 1.2em;
    line-height: 200%;
    margin: 0 20px;
}

.centered {
    text-align: center;
}

.social img {
    width: 40px;
}

a:link,
a:visited {
    color: #ffdbb5;
}

a:hover {
    text-decoration: none;
}

.mobile-only {
    display: none;
}

@media (max-width: 800px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: inline;
    }

    .wrapper {
        max-width: 500px;
    }
}
