body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    margin: 0 auto;
    padding: 0px;
    color: #333333;
    background-image: url('http://www.reklamadnepr.com/november2023/images/fon_1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
a {
    color: #f5f5dc; /* Цвет ссылок */
    text-decoration: none;
}
a:hover {
    color: #a22b33; /* Цвет ссылки при наведении */
}
a.contact {
    color: #a22b33; /* Цвет ссылок */
    text-decoration: underline;
}
a.popular-gift {
    color: #a22b33; /* Цвет ссылок */
}

a.popular-gift:hover {
    text-decoration: underline; /* Подчеркивание ссылки при наведении */
    color: #d79f7a; /* Цвет ссылки при наведении */
}
.header {
    background: url('http://www.reklamadnepr.com/november2023/images/baner.jpg') no-repeat center center/cover;
    padding: 20px;
    text-align: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.header h1 {
    margin: 0;
    color: #f5f5dc;
    font-family: 'Dancing Script', cursive;
    font-size: 77px;
    z-index: 2;
}

.header p {
    color: white;
}

h1 {
    font-family: 'Dancing Script', cursive;
    color: white;
}

h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 50px;
    color: #a4341c;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1450px;
    margin: 0 auto;
}

.gifts-section {
    flex-basis: 60%;
    padding: 20px;
    text-align: left;
    margin: 0;
}

.links {
    background-color: #01030e;
    color: #ffffff;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-block {
    background-color: #01030e;
    color: #d79f7a;
    height: 60px;
    width: 30%;
    display: flex;
    align-items: center;
}

.right-block {
    background-color: #01030e;
    color: #ffffff;
    height: 60px;
    width: 65%;
    display: flex;
    align-items: center;
    text-align: right;
}

.separator {
    display: block;
    border-left: 1px solid #f5f5dc; /* Цвет вертикальной разделительной полосы */
    height: 40px; /* Высота вертикальной разделительной полосы */
    margin: 20px 20px; /* Регулировка отступов вокруг разделительной полосы */
}

footer {
    background-color: #01030e;
    color: #ffffff;
    text-align: center;
    padding: 0px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
        
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blinking-link {
  animation: blink 1s infinite;
color: #a22b33;
}