 @import url('dyuthi.css'); html { font-family: 'Dyuthi', sans-serif; } 

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Dyuthi', sans-serif;
}

.background-image {
    background-image: url('bg.svg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.logo-container img {
    max-width: 50%;
    height: auto;
}

.icons-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    margin: 20px 0;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Zentriert die Icons vertikal */
    width: 80px; /* Feste Breite für Icons */
    height: 120px; /* Feste Höhe für Container */
    margin: 0 auto;
}

.icon-item img {
    max-width: 100%; /* Erlaubt den Icons, sich innerhalb des Containers anzupassen */
    height: auto;
}

.icon-item p {
    font-size: 1.2em;
    text-align: center;
}

@media (max-width: 600px) {
    .icon-item {
        width: 100%; /* Breite auf kleinen Bildschirmen */
    }

    .icon-item img {
        max-width: 60px;
    }
}

