body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #0c3a54;
    color: #ffffff;
}

.container {
    text-align: center;
}

.logo img {
    width: 100px;
    margin-bottom: 20px;
}

h1 {
    margin: 20px 0;
    font-size: 24px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

button {
    background: #29abe2;
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.highlight {
    background-color: #4295f5; /* цвет кнопки */
    box-shadow: 0 0 15px 5px rgba(41, 171, 226, 0.6);
}

button:hover {
    background: #2389b3;
}

button.highlight:hover {
    background: #4fc3f7; /* Светло-синий цвет без изменения при наведении */
}

/* Styles for large screens */
@media (min-width: 768px) {
    .buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .buttons.vertical {
        /* display: flex; */
        flex-direction: column;
    }
}

