body {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: rgba(0, 0, 0, 0.05);
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/zemin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.05;
}

.yazi {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 20px;
    font-family: sans-serif;
}

.yazi img {
    margin-bottom: 50px;
    width: 30%;
}

.yazi p {
    margin-top: 0;
    margin-bottom: 10px;
}

@media (max-width:1000px) {
    .yazi img {
        width: 60%;
    }
}