@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

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

body {
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    margin-top: 120px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 50px;
}

header {
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    margin: auto;
    max-width: 800px;
    text-align: center;
    align-items: center;
}

#container {
    display: flex;
    flex-direction: column;
    box-shadow: 1px 1px 10px black;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 500px;
    padding-top: 70px;
    padding-bottom: 90px;
}

.formItems {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    align-items: center;
}

label {
    font-size: 1.2em;
}

input {
    font-size: 1.2em;
    border-radius: 5px;
    width: 170px;
    padding: 5px;
}

button {
    padding: 5px 10px;
    font-size: 1.2em;
    font-weight: bolder;
    background-color: white;
    border-radius: 10px;
    align-self: center;
    margin-top: 50px;
    transition: transform 0.3s ease;
    border: 1px solid black;
}

button:hover {
    cursor: pointer;
    background-color: blue;
    color: white;
    transform: scale(1.1, 1.1);
}

span {
    margin-top: 80px;
    font-size: 18px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: black;
    color: white;
    padding: 10px;
}

footer > p > a {
    color: white;
    font-style: italic;
}

@media (max-width: 720px) {
    h1 {
        margin-top: 50px;
        font-size: 40px;
    }

    #container {
        width: 300px;
        padding: 0;
        margin-top: 40px;
        padding-bottom: 20px;
    }

}