:root {
    --color-primary: #0a2342;
    --color-secondary: #C4FF00;
    --color-aqua: #16C2D5;
    --color-dark-gray: #6E7582;
    --color-black: #000000;
    --color-white: #ffffff;
    --hot-pink-color: #f27aa7;
    --font-body: 'TwCenMT';
    --font-heading: 'MontserratAlt1';
    --size-30: clamp(1.375rem, 2.5vw, 1.875rem);
    --size-56: clamp(1.25rem, 5vw, 3.5rem);
    --size-40: clamp(1.5rem, 3vw, 2.5rem);
    --size-32: 2rem;
    --size-24: clamp(1.125rem, 2vw, 1.5rem);
}

* {
    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: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: var(--size-24);
}

/*====[GLOBAL]======================================================*/
h1 {
    font-size: var(--size-56);
    font-weight: 200;
    line-height: 1.3;
    margin-bottom: var(--size-56);
}

h1 span {
    font-weight: 400;
}

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

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

p {
    font-weight: 200;
}

p:not(:last-child) {
    margin-bottom: 1rem;
}

/*====[END GLOBAL]======================================================*/

/*====[CUSTOM CLASSES]======================================================*/
.text-secondary {
    color: var(--color-secondary);
}

.text-large {
    font-size: var(--size-32);
}

/*====[END CUSTOM CLASSES]==================================================*/

div.logo {
    margin-bottom: 0.75rem;
}

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

a {
    font-weight: 300;
    color: var(--color-white);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 8px;
}

a:hover {
    color: var(--color-secondary);
}

/*====[RESPONSIVE]==================================================*/
@media (max-width: 767px) {
    :root {
        --size-32: 1.25rem;
    }

    body {
        font-size: 1rem;
    }

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

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

/* End 767px */
@media (max-width: 575px) {
    .logo img {
        max-width: 200px;
    }
}

/* End 575px */