/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(10deg, #01020E, #1C1C3A);
    color: white;
    font-family: 'Quattrocento';
}

.header {
    margin-right: 3em;
    line-height: 0;
    cursor: pointer;
}

.header a {
    text-decoration: none;
    color: inherit;
}

a:visited {
    text-decoration: none;
    color: inherit;
}
a:hover {
    text-decoration: none;
}

.header h1 {
    font-size: 4em;
    font-family: 'Oswald';
}

.header p {
    margin-top: 0;
    font-size: 1.2em;
}

.main {
    font-family: 'Quattrocento';
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 70px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.main h2 {
    font-size: 1.5em;
}
select {
    padding: 10px;
    font-size: 1.4em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: white;
    color: black;
    font-family: 'Quattrocento';
    font-weight: bold;
}

button {
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #37312f; 
    color: white;
    transition: 0.3s;
    font-family: 'Oswald';
    letter-spacing: 2px;
}

button:hover {
    background-color: #1C1C3A; 
}




@media (max-width: 768px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header {
        margin-bottom: 20px;
        margin-right: 1em;
    }

    .header h1 {
        font-size: 1.5em;
    }

    .header p {
        font-size: 0.5em;
    }

    .main {
        padding: 20px;
        width: 80%;
    }

    .main h2 {
        font-size: 1em;
    }

    select {
        font-size: 0.7em;
        width: 100%;
        padding: 8px;
    }

    button {
        width: 100%;
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {

    body {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header h1 {
        font-size: 1.5em;
    }

    .header p {
        font-size: 0.5em;
    }

    .main {
        padding: 15px;
        width: 50%;
    }

    select {
        font-size: 0.7em;
        padding: 8px;
    }

    button {
        margin-top: 5px;
        width: 100%;
        font-size: 0.7em;
        padding: 8px;
    }
}