body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #011929;
    color: #001A26;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #F0EFEB;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: inline-block;
    padding: 10px;
    background-color: #47606C;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

h1 {
    color: #4A636F;
    margin-bottom: 30px;
}

.button-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #7CDDDE;
    color: #011A28;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #2FA3B3;
}

.button i {
    margin-right: 8px;
}