body {
            margin: 60px;   
            margin-top: 15px        
}

h1 {
            font-family: Brush Script, cursive; 
            color: white; 
            text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black
}

h3 {
            font-family: 'Roboto', arial; 
            line-height:20px;
}

p {
            font-family: 'Roboto', arial;
}






nav {
            border-radius: 100px;
            display: flex;            
            flex-direction: row;
            justify-content: space-around;
            align-items: center;
}

ul {
            display: flex;
            gap: 80px;
            list-style-type: none;
            padding: 0;
            margin: 0;
}

li {
            margin: 10px 0;
}




        


a {
            text-decoration: none; /* Убираем подчеркивание */
            color: #e52b50; /* Цвет текста */
            font-family: Arial, sans-serif; font-weight: 550; /* Шрифт */
            padding: 7px; /* Поля вокруг текста */
            border-radius: 5px; /* Закругление углов */
            transition: all 0.55s ease;
            text-shadow: 0px 0px 20px rgba(229,43,80, 1);
}

a:hover {
            background-color: #e52b50; /* Цвет фона при наведении */
            color: white; /* Цвет текста при наведении */
            text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0px 10px rgba(0,0,0,0.4);
}






/* Основные стили */
.container {
            display: flex;
            flex-direction: column;
}


.box {
            border-radius: 5px;
            opacity: 0; /* Сначала объекты скрыты */
            transform: translateY(20px); /* Сначала объекты смещены вниз */
            animation: appear 1s ease-out forwards;
}


/* Анимация появления */
@keyframes appear {
   from {
                opacity: 0;
                transform: translateY(20px);
            }
   to {
                opacity: 1;
                transform: translateY(0);
            }
 }

.box:nth-child(1) { animation-delay: 0s; }
.box:nth-child(2) { animation-delay: 0.5s; }        
.box:nth-child(3) { animation-delay: 1s; }
.box:nth-child(4) { animation-delay: 1.5s; }
.box:nth-child(5) { animation-delay: 2s; }

.link-with-bg {
    display: inline-block;
    width: 530px;
    height: 300px;
    background-image: url('Vibrio_cholerae.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 300px;
    text-decoration: none;
    border-radius: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }

.columns-container {
  display: flex;
  gap: 30px; /* Расстояние между колонками */
}

.column {
  flex: 1;    /* Колонки будут одинаковой ширины */
}

