.main {
    background-color: #181821;
    background-image: none;
}
/* 1. Ændring i billedstørrelse for `.lower-text img` */
.lower-text img {
    max-width: 350px; /* Tidligere 450px */
}

/* 2. Ny klasse tilføjet */
.padding-top-30 {
    padding-top: 30px;
}

.content-text .upper-text .important-text {
    height: 350px;
}
/* 3. Ændring i tablet-media query */
@media screen and (max-width: 1024px) {
    .lower-text img {
        max-width: 400px; /* Tidligere 450px */
    }
}

/* 4. Ændring i mobil-media query padding */
@media screen and (max-width: 768px) {
    .content-text .important-text {
        padding: 1rem; /* Tidligere 2rem */
    }
}