@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans-Regular.ttf');
    font-weight: regular;
}

@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans-Light.ttf');
    font-weight: light;
}

body,
html {
    padding: 0px;
    margin: 0px;
    font-family: 'OpenSans';
    background: linear-gradient(135deg, #1d5b85 0%, #3295c7 100%); 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
}

canvas {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

h1 {
    text-align: center;
    font-size: 8vw;
    color: white;
    letter-spacing: -3px;
    font-weight: bolder;
    margin: 50px;
}

h3 {
    text-align: center;
    font-size: 20px;
    color: white !important;
    font-weight: bold;
    margin: 10px;
}

.container {
    text-align: center;
    justify-content: center;
    display: block;
}

.list-container {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    /* Blur + Abdunkelung */
    backdrop-filter: blur(10px) brightness(0.7);
    -webkit-backdrop-filter: blur(10px) brightness(0.7); /* Für Safari */

    /* Optional: Hintergrund für besseren Kontrast */
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
}

/* Media Query für Smartphones */
@media (max-width:1016px) {
    .list-container {
        width: 80vw; /* Größere Breite auf Smartphones */
        margin: 10px;
        padding: 15px;
    }
}

.list-container .wrapper {
    min-width: 300px;
    max-width: 400px;
    padding: 20px;

    border-style: solid;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-bottom-color: #222;

    border-left-style: none;
    border-right-style: none;
}

.list-container a {
    color: white;
    font-size: 22px;
    line-height: 2;
    text-decoration: none;
}
