#landing {
    min-height: 100vh;
    position: relative;
    background-image: linear-gradient(86.59deg, #000000 6.45%, rgba(147, 146, 146, 0.447958) 85.63%, rgba(7, 7, 7, 0.279669) 109.77%, rgba(217, 217, 217, 0) 149.89%), url("../img/index.jpg");
    background-size: cover;
    flex-direction: column;
    color: white;
}

#landing h1 {
    font-size: 8rem;
    margin-left: 10%;
    font-family: Oswald;
    font-weight: 500;
    line-height: 7rem;
}

#landing h3 {
    font-size: 5rem;
    margin-left: 7.5%;
    font-family: Oswald;
    font-weight: 500;
}

#about {
    display: block;
}

#ukraine {
    min-height: 100vh;
    background-image: url("../img/ukraine.jpg");
    background-size: cover;
    display: flex;
}

#ukrainetext {
    position: relative;
    flex-direction: column;
    display: flex;
}

#ukrainetext > p {
    margin-top: 5%;
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
    font-size: clamp(1.5rem, 2vw + 1rem, 4rem);
}

.abupper {
    text-align: center;
    margin-top: 10%;
    margin-bottom: 5%;
}

.abmiddle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1rem;
    margin: 0 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.abgridpart {
    flex: 1 1 250px;
    min-width: 0;
    box-sizing: border-box;
    margin-top: 2.5%;
    margin-left: 5%;
    margin-right: 2.5%;
    text-align: left;
}

.ablower {
    margin-top: 5%;
    margin-bottom: 5%;
}

.abgridpart > p {
    font-size: 1.5rem;
}

.ukraine {
    position: relative;
}

.newswindow {
    width: 90%;
    margin: 0 auto;
    max-height: 80vh;
    overflow-y: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 1.5rem;

    padding: 2rem;
    background-color: #ccc;
    box-sizing: border-box;
}

.newselement {
    display: flex;
    flex-direction: column;
    background-color: #eee;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 2 / 3;
}

.image-container {
    flex: 0 0 33.33%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
}

.content h3 {
    margin: 0;
    font-size: 2rem;
    color: #333;
}

.content p {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #444;
}

.readmore {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #26B1FF;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s;
}

.readmore:hover {
    background-color: #26B1FF;
}

h1.ukraine1, h1.ukraine2 {
    position: relative;
    font-family: Oswald, sans-serif;
    font-weight: 450;
    background-color: #26B1FF;
    color: white;
    font-size: clamp(3.5rem, 7vw, 6rem);
    margin: 0 0 1rem 5%;
    width: fit-content;
    padding: 0 1rem;
    text-align: left;
}

h1.ukraine1 {
    position: relative;
    top: -11rem;
    margin: 0 0 1rem 5%;
}

h1.ukraine2 {
    position: relative;
    top: -12rem;
    margin: 0 0 1rem 2.5%;
}

h1.news {
    align-self: center;
    margin: 0;
}

.mehrerfahren {
    background-color: #26B1FF;
    color: white;
    border-radius: 8px;
    padding: 6px 12px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap; /* Verhindert Umbruch mitten im Wort */
    max-width: 100%;
}