/* Grundlegende Seitengestaltung */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Hintergrundfarbe, falls das Hintergrundbild nicht lädt */
}

/* Hintergrundbild zentriert und auf 1100x700px beschränkt */
.background {
    width: 1100px;
    height: 700px;
    background-image: url('background.png'); /* Setze hier das Hintergrundbild ein */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Zentrierte Box für Link */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.link-box {
    background-color: yellow; /* Gelber Hintergrund */
    border: 2px solid black;  /* Schwarze Umrandung */
    padding: 10px;
    margin-bottom: 20px;
}

#myLink {
    text-decoration: none;
    font-size: 36px; /* Doppelte Größe der Schrift */
    color: #007bff;
}

#myLink:hover {
    text-decoration: underline;
}
