/*
(c) ni systems by NOVA inc.
@imports
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    font-family: Inter;
    margin: 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: Inter;
}

.headheadhead {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(292deg, rgba(255,201,251,1), rgba(135,104,255,1));
    text-align: center;
}

.headheadhead h1 {
    color: white;
    font-size: 10vw; /* Verwenden Sie eine relative Einheit wie vw, um die Größe anzupassen */
    font-weight: 700;
    white-space: nowrap; /* Verhindert Zeilenumbruch */
}

.headheadhead h2 {
    color: white;
    font-size: 2vw; /* Verwenden Sie eine relative Einheit wie vw, um die Größe anzupassen */
    font-weight: 700;
}








.whatis {
    padding: 5%;
    margin: 1%;
    background: linear-gradient(292deg, rgba(255,201,251,1), rgba(135,104,255,1));
    color: white;
    border-radius: 9px;
    width: 66vw;
    justify-self: center;
    text-align: justify;
}










.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
}
.card {
    width: 450px;
    padding: 20px;
    background: linear-gradient(292deg, rgba(255,201,251,1), rgba(135,104,255,1));
    border-radius: 10px;
    text-align: center;
    color: white;
}

.icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

h1 {
    font-size: 3.3rem;
    font-weight: 700;
}

button {
    background-color: f9c8f8;
    color: black;
    border: 1px solid rgba(255, 255, 255, 0.229);
    border-radius: 6px;
    font-weight: 700;
    padding: 1%;
    padding-left: 2%;
    padding-right: 2%;
    transition: all 0.3s ease;
}

button:hover {
    background-color: white;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.096);
}

.comment {
    color: rgba(255, 255, 255, 0.473);
}






footer {
    align-items: center;
    align-content: center;
    display: flex;
    justify-content: center;
}

footer p {
    color: rgba(0, 0, 0, 0.575);
}

footer a {
    color: rgb(0, 0, 0, 0.575);
    text-decoration: none;
}