body {
    font-family: Arial, sans-serif;
    margin: 50px;
}

.title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 34px;
}

.container {
    max-width: 600px;
    margin: auto;
}

.button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #45a049;
}