:root{
  --background-color: #575757;
  --darker-background-color: #000;
  --accent-color: #707070;
  --text-color: rgb(225, 225, 225);
  --navbar-height: 80px;
}

*{
  margin: 0;
  padding: 0;
  font-size: 22px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
}
html{
  height: 100%;
  scroll-behavior: smooth;
}
body{
  height: 100%;
  margin: 0px;
  background-color: rgb(145, 0, 0);
  font-family: 'Fira Sans', sans-serif;
  color: rgb(225, 225, 225);
}

details {
  margin-bottom: 200px;
}

nav{
  height: var(--navbar-height);
  background-color: var(--background-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 8;
}
nav ul{
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  z-index: 8;
}
nav li{
  height: 100%;
  width: 150px;
  text-align: center;
  position: relative;
  z-index: 8;
}
nav li:hover{
  background: var(--accent-color);
  z-index: 8;
}
nav ul a{
  height: 100%;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;
  z-index: 8;
}
.dropdown{
  height: min-content;
  width: 200px;
  background: var(--background-color);

  display: none;
  flex-direction: column;
  
  position: absolute;
  left: 0;
  top: var(--navbar-height);
  z-index: 8;   
}
.dropdown li{
  height: 70px;
  width: 100%;
  z-index: 8;
}
.dropdown li a{
  justify-content: flex-start;
  padding-left: 30px;
  width: calc(100% - 30px);
  z-index: 8;
}
nav li:hover .dropdown{
  display: flex;
  z-index: 8;
}
nav input[type="checkbox"]{
  display: none;
  z-index: 8;
}
.expandable_li{
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 8;
}
.toggle_button{
  width: 30px;
  height: 23px;

  position: absolute;
  top: 25px;
  right: 25px;

  display: none;
  flex-direction: column;
  justify-content: space-between;
  z-index: 8;
}
.bar{
  height: 4px;
  width: 100%;
  background: var(--text-color);
  border-radius: 100px;
  cursor: pointer;
  z-index: 8;
}

h1 {
  font-size: 5vw;
}

video {
  width: calc(100vw * 0.5);
  height: calc(56.25vw * 0.5);
  border-radius: 10px;
}

.banner {
  width: 100%;
  height: auto;
  position: sticky;
  top: 0;
  z-index: -1;
  border-radius: 20px;
  animation: moveDown 0.7s ease-in-out forwards;
}

.team {
  width: 70%;
  height: auto;
  background-color: rgb(87, 87, 87);
  text-align: center;
  position: relative;
  animation: moveleft 0.7s ease-in-out forwards;
  margin: auto;
}

.team:hover {
  width: 75%;
  cursor: pointer;
}

.week {
  background-color: #000;
  width: 50%;
  height: 50vw;
  text-align: center;
  border-radius: 20px;
  border: rgb(255, 149, 149);
  border-width: 5px;
  border-style: solid;
  margin: auto;
}

.youtube-button {
  background-color: red;
  width: 70%;
  height: auto;
  border-radius: 40px;
  text-align: center;
  font-size: 30px;
  position: relative;
  animation: moveright 1.3s ease-in-out forwards;
}

.youtube-button:hover {
  background-color: rgb(255, 70, 0);
  cursor: pointer;
  width: 75%;
}

.profil {
  width: 30%;
  height: auto;
  max-width: 350px;
  animation-name: example;
  animation-duration: 2s;
  position: relative;
  border: 4vw solid;
  border-color: rgb(145, 0, 0);
  border-bottom-right-radius: 20vw;
  border-top-left-radius: 45vw;
  border-bottom-left-radius: 30vw;
  border-top-right-radius: 55vw;
}

.members {
  text-align: center;
  background-color: rgb(87, 87, 87);
}

#contact-container {
  width: 70%;
  text-align: center;
  background-color: rgb(87, 87, 87);
  margin:auto
}

.email-link {
  font-size: 3vw;
  color: rgb(220, 220, 220);
  font-weight: bold;
  background-color: rgb(87, 87, 87);
}

.contact-button {
  background-color: rgb(87, 87, 87);
  width: 70%;
  height: auto;
  border-radius: 40px;
  text-align: center;
  font-size: 30px;
  position: relative;
  animation: moveright 1.3s ease-in-out forwards;
  color: white;
}

.contact-button:hover {
  cursor: pointer;
  background-color: #cfbdb2;
  width: 75%;
}

.contact-button-container {
  text-align: center;
}

.gallery-img-small {
  width: 46%;
  height: auto;
  margin: 7px;
  border-radius: 20px;
  transition: transform 0.5s ease-in-out;
}

.gallery-img-small:hover {
  transform: scale(1.13);
  cursor: pointer;
}

.fooder {
  width: 100%;
  height: 500px;
  background-color: rgb(87, 87, 87);
  border-top-right-radius: 200px;
  border-top-left-radius: 200px;
  border: 2px solid;
  border-color: #000;
  text-align: center;
}

.fooder-link {
  margin: 20px;
  font-size: 20px;
  color: rgb(220, 220, 220);
  width: 5%;
  border-radius: 5px;
  height: auto;
}

.videos {
  width: calc(100vw * 0.4);
  height: calc(56.25vw * 0.4);
}

#videos-container {
  text-align: center;
}

.imprint {
  text-align: center;
}

#video-jet {
  position: relative;
  animation: moveright 0.9s ease-in-out forwards;
  border-radius: 20px;
}

#video-frog {
  position: relative;
  animation: moveleft 0.9s ease-in-out forwards;
  border-radius: 20px;
}

.facebook-button {
  background-color: rgb(10, 104, 255);
  width: 70%;
  height: auto;
  border-radius: 40px;
  text-align: center;
  font-size: 30px;
  position: relative;
  animation: moveleft 1.3s ease-in-out forwards;
}

.facebook-button:hover {
  background-color: rgb(55, 131, 252);
  cursor: pointer;
  width: 75%;
}

.insta-button {
  background-image: linear-gradient(to left, red, orange, yellow);
  width: 70%;
  height: auto;
  border-radius: 40px;
  text-align: center;
  font-size: 30px;
  position: relative;
  animation: moveright 1.3s ease-in-out forwards;
}

.insta-button:hover {
  background-image: linear-gradient(to left, orange, yellow);
  cursor: pointer;
  width: 75%;
}

.portofolio-h1 {
  font-size: 9vw;
}

#portrait {
  text-align: center;
}

.blog {
  text-align: center;
  background-color: rgb(87, 87, 87);
  user-select: none;
  cursor: pointer;
}

.title-h1 {
  text-align: center;
}

.logo {
  width: 7%;
  height: auto;
  position: absolute;
  left: 10%;
  top: 80px;
  border-radius: 300px;
  z-index: 4;
}

.forward {
  position: absolute;
  right: 3%;
  top: 100px;
  cursor: pointer;
  width: 5%;
  height: auto;
  background-color: orange;
  border-radius: 10px;
  z-index: 6;
}

.back {
  position: absolute;
  left: 1%;
  top: 100px;
  cursor: pointer;
  width: 5%;
  height: auto;
  background-color: orange;
  border-radius: 10px;
  z-index: 6;
}

.video-container {
  text-align: center;
  width: calc(100vw * 0.52);
  height: calc(56.25vw * 0.52);
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 10px;
}

.btn_container {
  text-align: center;
}