* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(57, 57, 136);
    width: 100vw;
    height: 100vh;
}

.container {
    background-color: rgb(19, 19, 78);
    padding: 15px;
    width: min(400px, 90%);
    height: auto;
    border-radius: 20px;
}

h1 {
    text-align: center;
    font-size: 40px;
    color: #fff;
    font-family: monospace;
}

p {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    font-family: monospace;
    color: #fff;
    margin: 15px;
}

.botoes {
    display: flex;
    justify-content: space-evenly;
    padding: 15px;
}

button {
    color: #fff;
    font-size: 18px;
    width: 100px;
    height: 36px;
    background-color: rgb(71, 71, 163);
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: rgb(45, 45, 105);
    cursor: pointer;
    
}