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

html, body, input, span, button, textarea {
    font-family: 'Futura PT', sans-serif;
    font-size: 17px;
}

body {
    background-color: #011029;
    background: linear-gradient(0deg, #011029, #03314a);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    color: #fff;
    user-select: none;
    overflow-x: hidden;
}

.page, .page.bg .container, .page.bg .overlay {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a {
    color: #fff;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 1rem 0;
}

.page.bg .container {
    text-align: center;
    text-wrap: balance;
    padding: 4rem 0;
}

header .container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

button {
    background-color: #fff;
    border: none;
    border-radius: 1rem;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 200ms ease-in-out;
}

button:hover {
    background-color: #dadada;
}