body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: rgb(136, 132, 132);
}
h1 {
    color: black;
}
button {
    background-color: blue;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}
button:hover {
    background-color: darkblue;
}

body { 
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h1 {
    color: #9a1616;
    margin-bottom: 20px;
}

p {
    color: #b38b8bd0;
    font-size: 16px;
}