body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
.container {
    width: 60%;
    margin: 0 auto;
}
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}
.section:nth-child(even) {
    background-color: #ddd;
}
h1, p {
    
    max-width: 600px;
    display: block;
    position: relative;
    z-index: 1;
}

.bg-image {
    background-image: url("https://plus.unsplash.com/premium_photo-1661947436461-a9ab4ecdd37a?q=80&w=1932&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D.jpg"); /* Путь к изображению */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    max-width: 400px;
}

.text-wh{
    color:blanchedalmond;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 5%;
    width: 200px;
    height: 39px;
}