* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    padding: 10px 20px;

    background-color: #336A86;
    color: white;

    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
width: 250px;
    text-align: center;
}

.btn:hover {
    background-color: #283132;

    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 600px) {
    .logo {
        width: 100px;
    }

    .buttons {
        gap: 10px;
    }

    .btn {
     
    }
}
