.ee{
	position: fixed;
	overflow-y: scroll;
	width: 50%;
	height: 100%;
	top: 0;
	right: 0;
}

.nw{
	padding: 0px;
    display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  
}


.nw div {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Adjust the padding-top percentage based on the aspect ratio of your video */
}

.nw iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sw{
	display: flex;
  	align-items: center;
  	justify-content: center;
    overflow-y: hidden;
}

main nav{
  margin: 20%;

}

main ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap; /* wrap the li elements when they reach the end of the container */
  justify-content: center;
  align-items: center;
  flex-grow: 1; /* allow the ul element to grow to fill the container */
}

main li {
  margin: 5px;
}

thead td{
  background-color: var(--color-green);
  color: white;
  text-transform: uppercase;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table tr {
  border-bottom: 1px solid black;
}

table td {
  padding: 5px;
}

table th {
  padding: 5px;
  background-color: var(--color-green);
  color: white;
}

table a{
  color: black;
}

table th:hover{
	cursor: pointer;
}


@media only screen and (max-width: 1024px) {
  .nw,
  .ee,
  .sw{
      position: relative;
      width: 100%;
      height: auto;
      border-right: 0px;
      border-left: 0px;
  }

  main nav {
    margin: 5%;
  }

  .sw{
        height: 20%;
  }

}