body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}

h1 {
    font-size: 2rem;
    color: #651fff;
    margin-bottom: 2rem;
}

.titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#resultado {
    display: flex;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
}	

.button-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-gap: 1rem;
}

button {
    width: 100%;
    border: none;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0.7rem;
    cursor: pointer;
}

button:hover {
    background-color: #37474f;
}
