@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Places the header in the top of the page */
header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Places the toggle button inside the header and pushes it to the right side. */
.toggle
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(/images/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center top;
  cursor: pointer;
  left: 92%;
}

.toggle.active
{
  position: relative;
  width: 60px;
  height: 60px;
  background: url(/images/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center top;
  cursor: pointer;
  left: 92%;
}

.showcase
{
  position: relative;
  right: 0;
  width: 100%;
  min-height: 100dvh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  background-image: url('/images/group1.jpg');
  background-repeat: no-repeat; 
  background-size: cover;
  background-position: center;
  z-index: 2;
}

/* Adjusts the width of the menu when expanded */
.showcase.active
{
  right: 300px;
}

.showcase .logo
{
  position: relative;
  left: 50%;
  transform: translateX(-50%);

}

.showcase .logo img {
  max-width: 100%;
  opacity: 0.7;
  transition: 0.5s;
}

.showcase .logo:hover img {
  transition: 0.5s;
  opacity: 1;
}

.social
{
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.social ul {
  display: flex;
}

.social li
{
  list-style: none;
  margin-left: 1px;
  margin-right: 1px;
}

.social li img
{
  display: inline-block;
  opacity: 0.7;
  transform: scale(0.5);
  transition: 0.5s;
  cursor: pointer;
}

.social li img:hover
{
  opacity: 1;
  transform: scale(0.5) translateY(-15px);
}

.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 24px;
  color: #111;
}
.menu ul li a:hover
{
  color: #03a9f4; 
}

.info {
  position: absolute;
  background: rgba(255, 255, 255, 0.23);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(2.9px);
  backdrop-filter: blur(2.9px);
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items:stretch;
  overflow: auto;
}

.info caption {
  color: white;
  text-shadow: 0 1px 2px black;
  font-size: x-large;
  align-self: center;
}


table {
margin: 5%;
}

td {
  color: white;
  text-shadow: 0 1px 2px black;
  font-size: large;
  padding-left: 5px;
}

#time {
  text-align: right;
}


#map {
  margin: 10px;
  opacity: 85%;
  border: 4px thick #e8e5e5;
  -moz-border-radius: 10px;
  border-radius: 10px;
  flex-grow: 1;
  width: 150px;
}

@media (max-width: 1024px)
{

  .showcase
  {
    background-image: url('/images/group3.jpg');
    padding: 40px;
  }
  .showcase .logo img {
    max-width: 100%;
  }
}

@media (max-width: 430px)
{
  td {
    font-size: small;
  }
  .showcase
  {
    background-image: url('/images/group2.jpg');
    padding: 40px;
  }
  .showcase header
  {
    padding: 40px;
  }
  .showcase .logo img {
    max-width: 100%;
  }
}
