body {
    padding: 0;
    margin: 0;

    background-image: url(image/Moritz-Malik_Hintergrund-Startseite.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: right center;
    background-size: cover;

    font-family: "Reddit Sans", sans-serif;
    color: #EFEDE4;
}

h3 {
    font-family: "Reddit Sans", sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #EFEDE4;
    margin: 0;
}

h4 {
    font-family: "Reddit Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin: 0;
}

p {
    font-family: "Reddit Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

#p5-canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    display: block;
}

/* - - - - - Kontakt - - - - - */

#contact-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 250px 5%;
    box-sizing: border-box;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    width: 100%;
}

.contact-card {
    display: flex;
    flex-direction: column;
}

.card-header {
    background-color: rgba(229, 229, 229, 0.9);
    padding: 20px 25px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    color: #000;
    font-size: 18px;
    letter-spacing: 1px;
}

.mail-link {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.card-body {
    background-color: rgba(236, 236, 236, 0.95);
    padding: 30px 25px;
    border-radius: 0 0 20px 20px;
    margin-top: 5px;
    flex-grow: 1;
    color: #000;
}

.card-body p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.card-body li {
    font-weight: 700;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    font-family: "Reddit Sans", sans-serif;
    font-size: 16px;
}

.card-body li::before {
    content: "•";
    position: absolute;
    left: 0;
}


@media (max-width: 1150px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}