head {
    background-color: black;
    padding: 20px;
    margin: 2px 1px;
}

body {
    background-color: black;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: white;
    text-align: center;
    font-size: 70px;
    margin: 0;
    display: inline;
}

.headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.line {
    width: 100%;
    height: 7px;
}

.logo {
    display: inline-block;
    align-items: center;
    margin: 20px;
}

.logo .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: gold;
    margin: 10px 0;
}

.logo h1 span {
    display: inline-block;
    line-height: 1.2;
}

.content {
    display: flex;
    justify-content: space-around;
    background-color: white;
    width: 100%;
    padding: 20px;
}

.front {
    background-color: white;
    color: black;
    border: 2px solid black;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    /* Ändern Sie die Flex-Richtung, um die Elemente vertikal anzuordnen */
    align-items: center;
    justify-content: center;
    margin: 10px;
    text-align: center;
    /* Text zentrieren */
}

.front a {
    text-decoration: none;
    /* Entfernt die Unterstreichung des Links */
    color: black;
    /* Setzt die Linkfarbe auf Schwarz */
}

.content {
    display: flex;
    justify-content: center;
    background-color: white;
    width: 100%;
    padding: 20px;
    flex-wrap: wrap;
}

h2 {
    font-size: 70px;
}

.navigation {
    position: absolute;
    top: 20px;
    right: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover,
.dropbtn:focus {
    background-color: #3e8e41;
}

.content a {
    text-decoration: none;
    color: black;
    display: inline-block;
    margin: 10px;
}

.print {
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    /* Hier kannst du die gewünschte Breite festlegen */
    padding: 20px;
    /* Padding um den Inhalt herum */
    margin-top: 20px;
    /* Abstand nach oben, um das Element von den anderen zu trennen */
}

.shirt {
    margin: 10px;        /* Abstand zwischen den Bildern */
    border: 2px solid white; /* Weißer Rand um jedes Bild */
    display: inline-block;   /* Zeigt die Bilder nebeneinander an */
    width: 30%;         /* Stellt sicher, dass jedes Bild etwa 30% der verfügbaren Breite einnimmt. Du kannst dies nach Bedarf anpassen. */
    height: auto;       /* Behält das Seitenverhältnis des Bildes bei */
}

.buy-button {
    display: inline-block;
    margin: 10px;
}

.coming-soon-container {
    position: relative;
    display: inline-block; 
}

.coming-soon-container h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px; 
    z-index: 1; 
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); 
}

.shirt {
    width: 50%; /* Reduziert die Breite des Bildes auf 70% seiner ursprünglichen Größe. */
    height: auto; /* Behält das Seitenverhältnis des Bildes bei. */
    display: block; /* Stellt sicher, dass das Bild zentriert ist. */
    margin: 0 auto; /* Zentriert das Bild horizontal. */
}

