body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: #f8f9fa;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
}

main {
    text-align: center;
    margin-top: 50px;
}

.title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.text {
    font-size: 1.2em;
    color: #555;
}

.buttons {
    margin-top: 30px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
