@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --gray-darkest: #1a1a1a;
    --gray-darker: #292929;
    --gray-dark: #383838;
    --gray-medium: #666666;
    --gray-light: #b3b3b3;
    --gray-lighter: #d9d9d9;
    --gray-lightest: #f5f5f5;
}

body {
    background-color: var(--gray-darkest);
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 0rem;
    font-size: clamp(1.6rem, 1vw, 14rem);
    line-height: 1.2;
    font-weight: 600;
}


header.main {
    margin-bottom: 0rem;
    display: flex;
    flex-direction: column;
    gap:0;
    margin-bottom: 1rem;
    p {
        margin: 0;
    }
}

header.internal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

header.internal .button {
    background-color: var(--gray-light);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18" /></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1rem;
    font-size: 10px;
    max-width: 20px;
    height: 20px;
}

section.row {
    padding: 0 1rem;
}

/* h1 {
    font-size: clamp(4rem, 8vw, 6rem); 
    font-weight: 900;
} */

h1 {
    font-size: clamp(3rem, 12vw, 12rem);
    white-space: nowrap;
    width: 100%;
    text-align: center;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

p {
    margin:0;
    margin-bottom: 1rem;
}


a {
    color: var(--gray-lightest);
    font-weight: 900;
}

small {
    font-size: 60%;
}

button,
.button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: inline-block;
    background-color: var(--gray-dark);
    color: var(--gray-lightest);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
}

button:hover,
.button:hover {
    background-color: var(--gray-darker);
    color: var(--gray-lighter);
}

button.clear,
.button.clear {
    background-color: transparent;
    border: none;
    color: white;
}

.button-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 300px;
    margin: 3rem auto;
}

.button-group-vertical .button {
    /* width: 100%; */
}