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

img {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mascara {
    height: 100%;
    width: 100%;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    position: fixed;
    top: 0;
    z-index: -1;
}

body {
    background-color: cadetblue;
}

button {
    width: 100px;
    height: 45px;
    border-radius: 10px;
    border: none;
    color: rgb(0, 0, 0);
    background-color: rgb(151, 0, 0);
}

.container {
    display: flex;
    flex-direction: column; /* Alinha o h1 e a div de botões em coluna */
    justify-content: center;
    align-items: center;
    height: 100vh; /* Altura total da viewport */
    gap: 20px; /* Espaçamento entre o h1 e a div de botões */
}

.button-container {
    display: flex; /* Alinha os botões em linha */
    gap: 20px; /* Espaçamento entre os botões */
}

h1 {
    font-size: 48px; /* Ajuste o tamanho da fonte se necessário */
    color: white;
}

button:hover {
    opacity: 0.7;
}

button:active {
    opacity: 0.5;
}

.title2 {
    font-size: 50px;
    margin-bottom: 80px;
}

@media (max-width: 650px){
    .container h1{
        font-size: 40px;
    }
}