body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 20px;
    
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgb(255, 255, 255);
    padding: 20px;
    max-width: 600px;
    min-height: 200px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
h2 {
    color: #333;
    margin-bottom: 15px;
}
button {
    padding: 8px 20px;
    background-color: #2da3a3;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}
button:hover {
    background-color: #247c7c;
}

a{
    text-decoration: none;
    color: white;
}