:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --hot-pink-color: #f27aa7;
    --font-body: 'TwCenMT';
    --font-heading: 'MontserratAlt1';
    --space-30: 1.875rem;
    --size-26: 1.625rem;
}

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

body {
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: 'TwCenMT';
    font-weight: 400;
    font-size: var(--size-26);
}

h1 {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
}

section {
    width: 100%;
    text-align: center;
    padding: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

div.logo {
    margin-bottom: var(--space-30);
}

.logo img {
    max-width: 1000px;
}

a {
    font-weight: 400;
    color: var(--color-white);
    text-underline-offset: 8px;
}

a:hover {
    color: var(--hot-pink-color);
}

@media (max-width: 992px) {
    body {
        font-size: 1rem;
    }

    a {
        text-underline-offset: 5px;
    }
}