body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/background.png') no-repeat center center;
    background-size: cover;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 90%;
    margin-top: 20px;
    /* Добавляем верхний отступ для контейнера */
}

.logo {
    width: 140px;
    margin-bottom: 10px;
    margin-top: 20px;
    /* Добавляем верхний отступ для логотипа */
}

h1 {
    margin: 10px 0;
    color: #333;
}

h3 {
    margin: 10px 0;
    color: #666;
}

p {
    margin: 5px 0;
    color: #666;
}

.social-icons img {
    width: 40px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-top: 20px;
}

.story {
    margin-top: 20px;
    font-weight: bold;
}

.about {
    margin-top: 20px;
    font-weight: normal;
}

.location {
    margin-top: 20px;
}

.location a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

@media (min-width: 768px) {
    .container {
        max-width: 500px;
    }
}