body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #282c34;
    color: #61dafb;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    white-space: normal;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    margin: 0.5em 0;
}

ul{
    list-style:none;
}


a:link, a:visited{
    color:#b0b3b8;
    text-decoration: none;
}

.header{
    text-align: center;
}

.header img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    margin: 0 auto;
    object-fit: cover;
}


.project-list {
    list-style-type: none;
    padding: 0;
}
.project-list li {
    background-color: #20232a;
    margin: 1em 0;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-list li:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}
.project-title {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}
.project-description {
    font-size: 1em;
    color: #b0b3b8;
}

@media (max-width: 600px) {
    .header img {
        width: 100%;
        height: auto;
        object-fit: contain; /* Bei sehr kleinen Bildschirmen passt es sich an, ohne beschnitten zu werden */
    }
}


.footer {
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.8em;
    color: #b0b3b8;
}