body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0; /* отступ от края до текста внутри блока */
    background-color: #f5f5f5;
}
div {
    background-color: white;
    padding: 20px;
    margin: 20px 20px; /* отступ между элементами */
    border-radius: 8px;
}
h3 {
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px; /* отступ только снизу от текста до границы */
}
ul li {
    margin: 10px 0;
    line-height: 1.5;
}
header {
    color: #f5f5f5;
    display: flex;
    background-color: white;
    justify-content: center;
    padding: 20px;
    width: 100%;
}
nav a {
    color: black;
    text-decoration: none; /* убираем подчеркивания */
    margin: 0 10px; /* отступ между ссылками */
}
nav a:hover {
    color: blue;
}
img {
    border-radius: 9px;
}
a {
    color: black;
    text-decoration: none; /* убираем подчеркивания */
    font-weight: bold;
}
a:hover {
    color: blue;
    text-decoration: underline;
}
select {
    background-color: white;
    border-radius: 5px;
    height: 130%;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
}
nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

nav select {
    padding: 5px 10px;
    margin-left: 10px;
}