body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

.box {
    width: 100px;
    height: 100px;
    background: #0A0A7F;
    transition: width 2s, height 2s;
    color: #0A0A7F;
  }

  .box .caution {
    font-size: 50px;
    background: #0A0A7F;
    text-align: center;
    color: #fff;
  }
  
  .box:hover {
    width: 100%;
    height: 300px;
    color: red;
  }

h1{
    font-size: 45px;
    color: #0A0A7F;
}
h2{
    color: #0A0A7F;
    font-size: 35px;
}
h3{
    color: #0A0A7F;
    font-size: 25px;
}

button{
    background-color: #0A0A7F;
    border: none;
    width: 200px;
    height: 50px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
}
button a{
    text-decoration: none;
}

button,a :hover{
    cursor: pointer;
}

button:hover{
    cursor: pointer;
    background-color: #fff;
    color: #0A0A7F;
    border: 1px solid #0A0A7F;
}

img{
    width: 100px;
    height: auto;
    padding-left: 50px;
}

footer {
    background-color: #0A0A7F;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.flex-container {
    display: flex;
    justify-content: space-around;
    padding: 80px 0;
    position: relative;
}
.footer-container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.footer-container h3{
    color: #fff;
}

.section-footer {
    text-align: left;
    width: 30%;
}
.welcome-container{
    margin: 0px 150px;
    padding: 50px 30px;
    line-height: 1.5em;
}

.line-text-container{
    background-color: #fff;
    color: #fff;
    padding: 0 180px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Stellt sicher, dass line-text-container über den anderen Elementen liegt */

}

.colorful-container {
    background-color: #0A0A7F;
    color: #fff;
    padding: 50px 180px;
    line-height: 1.5em;
}

.colorful-container h2{
    color: #fff;
}

/* Navbar styles */

.navbar{
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #606060;
}

.nav-links li {
    padding: 30px 50px;
}


.nav-links a:hover {
    transition: color 0.3s;
    text-decoration: none;
    background-color: #0A0A7F;
    color: #fff;
}

.topbar{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 0;
    background-color: #fcfcfc;
    border-bottom: 1px solid #ededed;
    box-shadow: 0px 3px 5px rgba(70, 70, 70, 0.2);
}

.times{
    display: inline-block;
    align-items: center;
}

.times h3 {
    margin: 0; /* Setzt die Standardmargins für das h3-Element auf 0 */
}

.logo {
    color: black;
    font-size: 30px; /* Beispielgröße, passe dies nach Bedarf an */
}

.event-box {
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 5px 5px 5px rgba(70, 70, 70, 0.3);
    margin-bottom: 10px;
    width: 22%;
    margin-top: 20px;
}


.event-box img{
    width: 100%;
    margin: 0;
    padding: 0;
}

.more-info{
    text-align: right;
}

.more-info a{
    color: #0A0A7F;
    text-decoration: none;
}

.close-days{
    text-align: left;
}

.main-text-container {
        position: absolute;
        width: 100%;
        transition: all;
        background-color: rgba(255, 0, 0, 0.5); /* Halbtransparentes Rot für das Beispiel */
        z-index: 1; /* Stelle sicher, dass es über den Flex-Elementen liegt */

  }



/* Stil für das Dropdown-Menü */
.dropdown {
    position: relative;
    display: inline-block;
  }

  /* Stil für das Hauptmenüelement */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown:hover{
    background-color: #0A0A7F;
  }

  /* Stil für die Dropdown-Inhalte (versteckt, bis das Hauptmenüelement gehovert wird) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 280px;
    z-index: 1;
    text-align: left;
  }

  /* Stil für die Untermenüpunkte */
  .dropdown-content a {
    display: block;
    text-decoration: none;
  }

  /* Ändere die Farbe der Untermenüpunkte beim Hover */
  .dropdown-content a:hover {
    background-color: #0A0A7F;
  }

  .contact a{
    font-size: 18px;
    text-decoration: none;
    color: #000;
  }

.fa{
    color: #0A0A7F;
    font-size: 20px;
}

iframe{
    width: 400px;
    height: 200px;
}





table {
    width: 100%;
    margin: 0;
}

table, th, td {
    border: none;
}

th, td {
    padding-right: 25px;
    text-align: left;
}