@import url(variables.css);
@import url(header.css);
@import url(navbtn.css);
@import url(sidemenue.css);
@import url(card.css);
@import url('footer.css');


*{
    box-sizing: border-box;
}

body {
    font-family: trasandina, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

/* Media Query für Desktop-Geräte (Bildschirmbreite größer als 600px) */
@media only screen and (min-width: 600px) {
    .wrapper {
        border: var(--borderRadius) solid var(--bgColorLight);
        padding: 0;
    }
}

@media (min-width: 576px){
    h1 {
        font-size: 70px;
    }
}

/* Stile für den Wrapper ohne Border (Standardstil) */
.wrapper {
    /* Standardstile hier einfügen */
    min-height: 100vh;
}