@font-face {
    font-family: 'TWKEverett';
    src: url('assets/TWKEverett-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TWKEverett';
    src: url('assets/TWKEverett-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F5F2EB;
    color: #1A4344;
    font-family: TWKEverett;
    font-size: 1.6rem;
    text-wrap: balance;
}

h1 {
    margin: 1em 0 0.4em 0;
    font-size: 1.6rem;
}

p {
    margin: 0;
}

a {
    color: #1A4344;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 40rem;
    position: relative;
}

.content img {
    width: 80vw;
    max-width: 30rem;
    height: auto;
}

@media (max-width: 768px) {
    body, h1 {
        font-size: 1.2rem;
    }
}