body {
    background-image: url("../images/background.webp");
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-size: cover;
    background-position: center;
}
@font-face {
    font-family: mn-raghford;
    src: url('../mnraghford-regular.woff2');
}

@font-face {
    font-family: mn-raghford-slant;
    src: url('../mnraghford-slant.woff2');
}


:is(h1, h2, h3, h4, h5, h6) {
    font-family: mn-raghford,serif;
    font-weight: lighter;
    overflow-wrap: break-word;
    hyphens: manual;
}

/* Increase the font size of the <h1> element */
.header h1 {
    font-size: 7rem;
    margin:0
}

.header h2 {
    font-size: 3rem;
    margin:0
}

h1 {
    font-size: 5em;
    margin:0
}
h2 {
    font-size: 2em;
    margin:0
}
p, li, a {
    font-family: Arial, sans-serif;
}
a {
    color: black;
    text-decoration: none;
}

/* Ensure proper sizing */
* {
    box-sizing: border-box;
}

.box {
    width: 100%;
    height: 800px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

#komoot-placeholder {
    padding: 20px;
}


/* Column container */
.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-inline: auto;
}

.container > div {
    padding: 20px;
    width: 100%;
}

.header {
    text-align: center; /* center the text */
    background: #DEDC00; /* yellow background */
    color: black; /* black text color */
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
}

.termine-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    column-gap: 50px;
}

.termine-master-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
    padding-top: 20px;
}

.termine-master-container > div {
    padding: 20px;
}

.main {
    background: #DEDC00; /* yellow background */
    color: black; /* black text color */
}

.footer {
    background: #ddd; /* Grey background */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 15px;
}

.right-footer {
    margin-left: auto;
    display: flex;
    column-gap: 20px;
}

@media screen and (max-width: 1000px) {
    .container {
        width: 100%;
    }
    body {
        background-image: url("../images/background_mobile.webp");
    }
}
