.main {
    padding-top: 5vh; /* Верхний отступ в 10% высоты видимой области окна */
    padding-bottom: 1vh; /* Нижний отступ в 10% высоты видимой области окна */
  }

.main .container {
    height: 100%; /* Устанавливаем высоту .container в 100% высоты родительского блока */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-content {
    max-width: 588px;
}

.main-descr {
    max-width: 486px;
    font-size: 20px;
    line-height: 24px;
}

.main-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.main-button-link {
    text-decoration: none;
}

.btn-primary {
    background: #3498db;
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}






