* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Evita problemas com largura e altura */
    font-family: "Roboto Mono", monospace;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), 0 2px 2px rgba(0, 0, 0, 0.22);
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url("https://c4.wallpaperflare.com/wallpaper/826/524/865/3-316-16-9-aspect-ratio-s-sfw-wallpaper-preview.jpg") center/cover;
    text-align: center;
}

h1 {
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.container {
    max-width: 450px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 5px;
    border: 3px solid #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), 0 2px 2px rgba(0, 0, 0, 0.22);
}

input,
select,
button {
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), 0 2px 2px rgba(0, 0, 0, 0.22);
}

select {
    font-size: 16px;
    appearance: none;
    text-align-last: center;
}

button {
    background-color: #000;
    color: #fff;
}
