body {
    font-family: Arial, sans-serif;
}

.zigzag-container {
    display: flex;
    flex-direction: column;
}

#mainphoto-image {
    background: url('cloudslidetheadventure_p2.png') top center no-repeat;
    background-size: cover;
    position: relative;
    height: 100vh;
    z-index: 0;
}

.zigzag-item {
    display: flex;
    align-items: center;
    padding: 20px;
    flex-direction: row;
}

.zigzag-item:nth-child(even) {
    flex-direction: row-reverse;
}

.zigzag-item img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-container {
    flex: 1;
    padding: 20px;
}

.text-container h1 {
    margin: 0 0 10px;
}

.text-container p {
    margin: 0;
}

@media (max-width: 768px) {
    .zigzag-item {
        flex-direction: column;
        text-align: center;
    }

    .zigzag-item:nth-child(even) {
        flex-direction: column;
    }

    .zigzag-item img {
        margin-bottom: 10px;
    }
}