/* Приветственный блок */
.Hello {
    background: linear-gradient(to bottom, #0f1448, #5ed4ff);
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Основное окно */
.window {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 31px;
    margin: 20px auto;
    max-width: 1000px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

/* Левый и правый блок внутри окна */
.what, .actions {
    flex: 1 1 300px;
    min-width: 0;
}

.what{
    gap: 40px;
    padding: 10px;
    max-width: 1000px;
    border-radius: 12px;
    height: 184px;
    background-color: #0056b3;
}

/* Изображение внутри .what */
.what img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 10px;
}

/* Заголовок в actions */
.actions h1 {
    margin-bottom: 10px;
}

/* Теги */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

/* Ссылки-теги */
.tags a {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 11px 20px;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.2s ease;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
}

/* При наведении на тег */
.tags a:hover {
    background-color: #0056b3;
}

.window1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px auto;
    max-width: 100%;
    width: 100%;
    /* gap: 31px;
    margin: 20px auto;
    max-width: 1000px; */
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

.wanda1{
    background-color: gray;
    display: inline-block;
}
.wanda{
    background-color: gray;
    display: flex;
}