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

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: normal;
    line-height: 1.2;
    font-size: 1.1vw;
    cursor: default;
}

/* Textauswahl */
::selection {
    background-color: transparent;
    color: #c2c2c2;
}

::-moz-selection {
    background-color: transparent;
    color: #c2c2c2;
}

/* Link Styles */
a,
a p,
p a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

p a:hover,
a:hover p {
    color: #209967;
    text-decoration: none;
}

/* Grid Layout für Section */
section {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 2vw;
    align-items: start;
    min-height: 100vh;
    align-content: center;
}

/* Grid Items - Platzhalter für die Positionierung */
.grid-item-1 {
    grid-column: 1 /span 2;
    font-size: 2vw;
}

/* Responsive Design für Mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    section {
        grid-template-columns: 1fr;
        gap: 20px;
        align-content: start;
    }
    
    .grid-item-1 {
        grid-column: 1;
        font-size: 25px;
    }
}