* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #212529;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.logo-item img {
    width: 160px;
    max-width: 70vw;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}

h1 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 20px;
    color: rgba(111, 170, 255, 0.8);
	font-family: monospace;
}

@media (max-width: 600px) {
    .logo-row {
        gap: 20px;
    }

    h1 {
        font-size: 1.3rem;
    }
}

.info-card {
    background-color: rgba(201, 184, 255, 0.8);
    padding: 20px;
    margin: 20px auto;
    border-radius: 1rem;
    max-width: 480px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-logo {
	justify-content: center;
	align-self: center;
    width: 64px;
    height: auto;
    flex-shrink: 0;
}

.card-text h2 {
	text-align: left;
	color: white;
	font-family: monospace;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.card-text p {
    text-align: left;
	font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Ansicht */
@media (max-width: 600px) {
    .info-card {
        max-width: 95%;
        padding: 18px;
    }

    .card-logo {
        width: 60px;
    }

    .card-text h2 {
        font-size: 1.05rem;
    }

    .card-text p {
        font-size: 0.9rem;
    }
}
