/* Main layout */
.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100dvh; 
    max-width: 800px;
    margin: auto;
}

.container {
    position: relative;
    background: white;
    border-style: none none solid none;
    border-color: orangered;
    width: 100%;
    box-sizing: border-box;
    padding: 1rem 3rem; 
    min-height: auto; 
    flex-grow: 0;
    align-items: center;
}

.button-container {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    border-style: solid none none none;
    border-color: orangered;
    background-color: white;
}

.button-container .home-button {
    display: flex;
    margin: 0;
    padding: 8px;
    background-color: orangered;
    color: white;
    border-radius: 0;
    border-style: none;
    cursor: pointer;
    transition: ease 0.3s;
}

.button-container .home-icon {
    padding: 0 0.7rem;
    font-size: 22px;
}

/* Typografie */
h1 {
    text-transform: uppercase;
}

h2 {
    margin-top: 3rem;
}

/* Mobile scaling */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.35rem, calc(0.850rem + 1.875vw), 1.75rem);
    }

    h2 {
        font-size: clamp(1.14rem, calc(0.789rem + 1.741vw), 1.63rem);
    }

    .container {
        padding: 1rem 7%;
    }
}