body {
    background-color: rgba(23, 34, 51, 1);
    font-family: Arial, sans-serif;
    font-size: 100px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-align: center;
}
a:link, a:visited {
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }
  
  a:hover, a:active {
    color: rgb(146, 146, 146);
  } 
.container {
    display: flex;
    max-width: 900px;
    margin: auto;
    padding-top: 20px;
}
  
.tile{
    display: flex;
    width: 400px;
    height: 200px;
    margin: 10px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.tile:hover {
    transform: scale(1.1);
}

.tile-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.tile-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    width: 480px; /* Breite des Titels anpassen */
    background-color: rgba(255, 255, 255, 0.075); /* Hintergrundfarbe für den Titel */
}
  
.tile-header {
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    width: 100%; /* Breite des Titels anpassen */
    background-color: rgba(255, 255, 255, 0.075); /* Hintergrundfarbe für den Titel */
}


    
  