body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
}

/* VIDEO */
.video {
    max-width: 1200px;
    margin: 40px auto;
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9-format */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* GALLERI */
.gallery {
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-text {
    background-color: #ffffff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

.image-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.image-container {
    text-align: center;
    width: 48%;  /* Ensures the images take up 48% of the width, leaving some space between them */
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.image-container p {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}