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

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.logo {
    max-width: 100%;
    height: auto;
}

.divider {
    width: 2px;
    height: 260px;
    background-color: #aaa;
    margin: 0 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.button {
    width: 80%;
    margin: 0 10px;
    padding: 10px 20px;
    border: 2px solid #000;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.button:hover {
    background-color: #000;
    color: #fff;
}

.button:hover a {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 881px) {
    .logo-container {
        flex-direction: column;
    }

    .divider {
        width: 400px;
        height: 2px;
		background-color: #aaa;
        margin: 20px 0;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        margin: 10px 0;
    }
}
