#logo {
  position: absolute;
  margin-top: 0px;
  margin-bottom: 0px;
  height: 200px;
  top: -50px;
  left: 0;
}

#logo-wind-thing {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 0px;
  height: 80px;
  top: 20;
  left: 0;
  margin: 0;
  padding: 0;
  float: left;
}

#logo-wind-thing-text {
  margin-top: 20px;
  height: 40px;
}

#logo-digiClubZone {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 0px;
  margin-right: 20px;
  height: 55px;
  top: 20;
  left: 0;
  margin-bottom: 30px;
  padding-right: 20px;
  float: left;
}

#logo-digiClubZone-text {
  margin-top: 30px;
  margin-left: 20px;

}

#hero {
  /* height:440px; */
  width: 100%;
  background-image: url("../images/hero.webp");
  background-position-y: -150px;
  background-size: cover;
  background-repeat: no-repeat;
}

header img {
  margin: 0px 0 0 10px;
}

header h1 {
  background-color: white;
  position: absolute;
  top: 2px;
  left: 100px;
  font-size: 2.5em;
}

header {
  background-color: rgb(255, 255, 255);
  position: relative;
  padding: 10px 10px;
  overflow: hidden;
}

header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

header a.logo {
  font-size: 25px;
  font-weight: bold;
}


header a.active {
  background-color: dodgerblue;
  color: white;
}

.header-right {
  float: right;
}

@media screen and (max-width: 500px) {
  header a {
    float: none;
    display: block;
    text-align: left;
  }

  header-right {
    float: none;
  }
}


/* Style the tab */
.tab {
  overflow: hidden;
  height: 60px;
  /* border: 1px solid #ccc;
  background-color: #f1f1f1; */

}


/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: right;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 20px;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Change background color of buttons on hover */
.tab .selected {
  background-color: var(--orange);
  color: var(--white);
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  /* border: 1px solid #ccc;
  border-top: none; */
}

.tabcontent {
  animation: fadeEffect 1s;
  /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}