

body {

    font-family: Verdana, Geneva, Tahoma, sans-serif;

    margin: 0;

    padding: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    height: 100vh;

    background-color: #f5f5f5;

}





.logo {

    margin-bottom: 20px;

}



img {

    max-width: 300px;

    height: auto;

}



.buttons {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 20px;

    width: 100%;

    max-width: 300px;

}



button {

    padding: 25px;

    background-color: #4CAF50;

    color: white;

    border: none;

    border-radius: 5px;

    font-size: 16px;

    cursor: pointer;

    transition: background-color 0.3s ease;

    width: 50%; 

}



button:hover {

    background-color: #45a049;

}



button:focus {

    outline: none;

}



.header {

    font-size: 24px;

    margin-bottom: 20px;

}

