body{
    top:auto;
    min-width: 300px;
}

table{
	width:98%;
	border:solid 1px #ddd;

}

tr{
	width:98%;
	border:solid 1px #ddd;
	
	}

tr:nth-child(even){background-color: #f2f2f2;}
tr:hover {background-color: #ddd;}

td{
	text-align:center;	
	border:solid 1px #ddd;
	
	}

.tda{
	width:20%;
}

.td1{
	width:12%;
	}

.td2{
	width:60%;
	}

.td3{
	width:12%;	
	}

.td4{
	width:12%;
	}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hero-left,.hero-right {
    flex-basis: 50%;
    height: 100vh;

    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index:1;
}

.hero-content {
    position: absolute;
    top: clamp(50%, 60%, 70%);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index:1000;
    display: flex;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: baseline;
}

.hero-date {
    display:block;
    text-align: center;
    z-index:1000;
    color:white;
    font-size: clamp(20px, 1.5vh, 48px);
    background-color: #220000;
    border: none;
    margin-top:20px;
    padding:  2vh 4vw;
    cursor: pointer;
    border-radius: 50px;
    opacity: 0.8;
    margin: 0.5vh 0.5vw;
}

.hero-button {
    background-color: #220000;
    color: #fff;
    border: none;
    padding:  2vh 4vw;
    font-size: clamp(20px, 1.5vh, 48px);
    cursor: pointer;
    border-radius: 50px;
    opacity: 0.8;
    z-index:1000;
    margin: 0.5vh 0.5vw;
}

.hero-button:hover {
    opacity: 1;
}

.hero-extra-text{
    font-size:clamp(14px, 1vh, 26px);
}

.clock {
    display:none;
    font-size: 44px;
    font-weight: bold;
    margin-top: 20px;
    z-index:1000;
    color:white;
}

/* Media queries for responsiveness */
@media (max-width: 1000px) or (orientation: portrait) or ((max-aspect-ratio: 9/16) and (max-resolution: 240dpi)) {
  .hero-left,.hero-right {
        flex-basis: 100%;
        height: 50vh;
    }
  .hero-date {
    font-size: clamp(18px, 1.5vh, 36px);
    padding:  2vh 4vw;
    margin: 0.5vh 0.5vw;
    }
  .hero-button {
    font-size: clamp(18px, 1.5vh, 36px);
    padding:  2vh 4vw;
    margin: 0.5vh 0.5vw;
    }
  .hero-extra-text{
        font-size:clamp(14px, 1vh, 22px);
    }    
  .clock {
        font-size: 36px;
        padding: 20px 20px;
    }
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #414141c9; /* black background */
    opacity: 0.5; /* 50% opacity */
    z-index: 999; /* make sure it's on top of everything */
  }

 .overlay-top {
    position: fixed;
    width: 100%;
    height: auto;
    opacity: 0.65; /* 50% opacity */
    z-index: 1002; /* make sure it's on top of everything */
  }
  
 .overlay-content-top {
    background-color: #220000;
    height:100%;
    text-align: center;
    width: 100%;
    color:white;
  }
  
  #top-text1 {
    padding: 1vh;
    font-size: 250%;
    font-weight: bold;
  }

  #top-text2 {
    padding: 0.5vh;
    font-size: 100%;
    font-weight: bold;
  }



  /* Style the modal overlay */
  .modal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); /* dim the background */
    z-index:1003;
  }

  #fullPageModalB{
    display: none; /* hide the modal initially */
  }

   #fullPageModalC{
    display: none; /* hide the modal initially */
  }

  /* Style the modal content container */
  .modal-content {
    max-height: 100vh;
    overflow-y: auto; /* make the content scrollable */
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 97%; /* adjust the width as needed */
    margin: 40px auto; /* center the modal horizontally */
  }
  
 .modal-headline {
    text-align:center;
    font-size:200%;
  }

 .modal-list-1 {
    margin-left:2vw;
    list-style-type: none;
    
  }

 .modal-list {
    margin-left:2vw;
  }

  .modal-info-1 {
    margin-left:2vw;
    list-style-type: none;    
  }

  .modal-info {
    margin-left:2vw;
    list-style-type: none;        
  }

  /* Close button */
  .close-modal {
    top: 30px;
    bottom:30px;
    margin-bottom: 30px;    
    left: 0;
    width: 100%;
    height: 30px; /* Make the button slim */
    color: #000; /* Black text */
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 30px; /* Align text vertically in the button */
    cursor: pointer;
    border-bottom:1px solid black;
    border-radius: 8px;
  }

  .close-modal:hover,
  .close-modal:focus {
   color: black;
 }