.botao{
    width: 50%;
    margin-top: 10px;
    border: 0;
    padding: 10px;
    background-color: aqua;
    border-radius: 10px;
    color: white;
    font-size: large;}
.container{
    margin-top: 10px;
}
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}
#sorteioButton {
    font-size: 1.5rem;
    padding: 15px 30px;
    border-radius: 50px;
    transition: background-color 0.3s;
}
#sorteioButton:hover {
    background-color: #0069d9;
    cursor: pointer;
}
#vencedor {
    padding: 20px;
    border-radius: 10px;
    background-color: #28a745;
    color: white;
    display: none;
}
#vencedor h4 {
    margin-bottom: 15px;
}