/* Сброс и основы */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Open Sans', sans-serif; 
    color: #fff;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    box-sizing: border-box;
}

/* 1. Максимально надежное центрирование */
.wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 90%; 
    max-width: 600px; 
    text-align: center;
}

/* 2. Основной контейнер */
.container {
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* 3. Заголовок */
h1 {
    font-family: 'Oswald', sans-serif; 
    font-weight: 700; 
    font-size: 26px; 
    text-transform: uppercase;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0;
    margin-bottom: 30px;
}

/* 4. Группа для кнопок */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Убираем подчеркивание у всех ссылок внутри группы кнопок */
.button-group a {
    text-decoration: none;
}

/* 5. Кнопки (Прямоугольные с закруглением) */
.button {
    font-family: 'Oswald', sans-serif; 
    width: 230px;
    height: 130px; 
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #fff;
    font-weight: 500; 
    font-size: 48px; 
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Градиенты для кнопок */
.btn-media {
    background: linear-gradient(to bottom right, #ff512f, #dd2476);
}

.btn-cloud {
    background: linear-gradient(to bottom right, #00d2ff, #3a7bd5);
}

.footer {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}