* {
    margin: 0px 0px;
    padding: 0px 0px;
    color: white;
    font-family: Roboto, sans-serif;
}

body {
    background-color: #0c0c0e;
    margin-left: 2%;
    margin-right: 2%;
    min-height: 100vh;
}

footer {
    margin-top: auto;       /* Прижмет футер к самому низу экрана, если контента мало */
    padding-bottom: 30px;   /* Сделает аккуратный отступ от нижней границы на айфонах */
}

.block_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 5px;
}

#bloack_head {
    margin-top: 5%;
}

img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    margin-top: 5%;
    margin-bottom: 5%;

    box-shadow: 
            0 0 4px 1px rgba(255, 255, 255, 0.2),   /* 1. Белое свечение прямо у края */
            0 0 30px 6px rgba(10, 191, 188, 0.5);    /* 2. Бирюзовый ореол, уходящий вглубь */
    
}

.button_link {
    max-width: 250px;
    width: 100%;
    height: 50px;
    background-color: #111419;
    border: 1px solid #1f1f24;
    border-radius: 10px;
    color: white;

    text-decoration: none;
    

    /* Включаем flex для выравнивания содержимого */
    display: flex;
    align-items: center;       /* Центрируем по вертикали */
    justify-content: flex-start;  /* Центрируем по горизонтали */
    padding-left: 13px;
    gap: 10px;                 /* Отступ между иконкой и текстом */
    cursor: pointer; /* Чтобы при наведении появлялся палец */
}

.button_title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mini_link {
    font-size: 10px;
    color: gray;
}

.max_link {
    font-size: 12px;
    color: white;
}

.arrow {
    margin-left: auto;
    margin-right: 3%;
}

#YouTube {
    background: #038885;
    background: linear-gradient(90deg, rgba(3, 136, 133, 1) 0%, rgba(8, 89, 90, 1) 100%);
    
    /* Центрируем текст */
    justify-content: flex-start;  

}

.discript {
    font-size: 12px;
    margin-bottom: 20px;
    text-wrap: wrap;
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
}

#miga {
    color: #0abfbc;
}

.mini_title {
    margin-bottom: 5px;
    font-size: 15px;
    margin-top: 20px;
}

h1 {
    font-size: 24px;
}

