:root {
    --color-primary: #000;
    --color-background: skyblue;
    --color-accent: #b9a285;
}

body {
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    background: var(--color-background);
}

h1, h2, h3 {
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px black;
}

h1 {
    font-size: 5rem;
    margin-bottom: 0;
    -webkit-text-stroke: 2px black;
}

h2 {
    font-size: 1.5rem;
}

button {
    width: 15rem;
    height: 3.75rem;
    border: 4px solid var(--color-primary);
    border-radius: 8px;
    background: var(--color-background);
}

button:hover {
    filter: brightness(0.8);
    cursor: pointer;
}

section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.first_name {
    padding-top: 2rem;
}

.last_name {
    padding-bottom: 4rem;
}

.names, .phone_birthday, .email_box {
    background: dodgerblue;
    width: 70%;
    border-radius: 1rem;
    border: 2px solid white;
    outline: 3px solid black;
}

.phone_number_input, .select, .date, .email_text {
    display: flex;
    justify-content: center;
}

#value {
    accent-color: var(--color-primary);
    width: 90%;
    height: 10px;
    margin-bottom: 0.4rem;
}

#text {
    text-align: center;
    color: white;
}

#spin {
    margin-bottom: 2rem;
    background-color: dodgerblue;
    color: white;
    border: 2px solid white;
    outline: 2px solid black;
}

.phone_number {
    margin-top: 2rem;
}

#submit {
    margin-top: 3rem;
    background-color: dodgerblue;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    border: 2px solid white;
    outline: 3px solid black;
}

#email {
    width: 25rem;
    height: 2.5rem;
    border: 2px solid white;
    outline: 3px solid black;
    border-radius: 8px;
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.submit {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

@media screen and (max-width: 689px) {
    .select {
        zoom: 0.625;
    }
}