@font-face {
    font-family: 'Black Mango';
    src: url('fonts/black-mango-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: default;
  }
html {
  scroll-behavior: smooth;

}
body {
  font-family: Helvetica;
}

/* removes the scrollbar of the website but keeps its functionality */
body::-webkit-scrollbar {
  display: none;              
}


section {
  height: 100vh;
  box-sizing: border-box;
  min-height: fit-content;
  max-width: 100vw;
}

/* Landing Page */
#home {
  background-image: url(/images/image-3.png) ;
  width: 100vw;
  height: 100vh;
  max-height: 1100vh;
  flex-shrink: 0;
}

.logo {
  width: 2.8rem;
  height: 3.8rem;
  padding-top: 2rem;
  margin-left: 5rem;

  display: flex;
  justify-content: start;
  flex-direction: column;

  gap: 0.2rem;
    
}

.title_home {
  margin-top: 30rem;
  margin-left: 5rem;
  color: #FFF;
  font-family: "Black Mango";
  font-size: 200px;
  font-weight: 400;
  width: fit-content;
}





/* FIlm Roll */
#film_roll_element {
  position: absolute;
  z-index: 3;
  background-image: url(/images/Film\ Element.svg);
  top: 0rem;
  right: 0rem;
  flex-shrink: 0;
  height: 225.6vh;
  width: 26vw;
}





/* About Section */

#about_me {
  background-image: url(/images/image-4.png);
  width: 1582px;
  height: 1077px;
  flex-shrink: 0;

}

#title_about {
  color: #000;
  font-family: "Black Mango";
  font-size: 250px;
  font-weight: 400;
  white-space: nowrap;
}

.subtitle {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-left: 32rem;
  top: 23rem;


}

.subtitle_element {
    color: #000;
  text-align: center;
  font-family: "Helvetica" ;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.text_container {
  position: absolute;
  font-size: 1rem;
  top: 125rem;
  margin-left: 5rem;

}


.tab_titles {
  display: flex;
  margin-top: 8rem;
  margin-left: 5rem;
}

.tab_links {
  margin-right: 3.1rem;
  font-size: 2rem;
  font-family: 'Black Mango';
  font-weight: 400;
  cursor: pointer;
  position: relative;
  color: black;
}

.tab_links:hover {
  color: #555555;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  text-decoration-color: #b5b5b5;
}

.tab_contents {
  font-size: 1.5rem;
  font-weight: 200;
  width: 40rem;
  margin-top: 4rem;
  margin-left: 12rem;
}

.tab_contents {
  display: none;
}

.tab_contents.active_tab {
  display: block;
}








/* Learing Outcome Section */

#title_LO {
  color: #000;
  font-family: "Black Mango";
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  margin-top: 6.8rem;
  margin-left: 3.75rem;
}

/* From Uiverse.io by vinodjangid07 */ 
/* .button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  color: white;
  gap: 8px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50px;
  border: 8px solid #808080;
  background: #000;


  margin-top: 20rem;
  margin-left: 15rem;
} */

/* From Uiverse.io by anonymous  */

.svg {
  padding-top: 5px;
  height: 100%;
  width: fit-content;
}
.svg svg {
  width: 50px;
  height: 30px;
}
.button:hover {
  border: 8px solid #000;
}
.button:active {
  border: 5px solid #808080;
}
.button:hover .svg svg {
  animation: jello-vertical 0.9s both;
  transform-origin: left;
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}


   /* Hover Learning Outcomes Button  */

   #btn {
    width: 15rem;
    height: 10rem;
    margin-top: 15rem;
    margin-left: 3.2rem;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 8px;
    font-family: 'Helvetica';
    font-size: 17px;
    font-weight: 500;
    color: black;
    text-shadow: none;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    border: 3px solid #ffffff00;
    transition: 0.5s ease;
    user-select: none;
  }
  



  #btn:hover,
  :focus {
    height: 10rem;
    width: 15rem;
    color: black;
    background: #fce76f;
    border: 1px solid #ffe26e;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
    box-shadow: 0 0 5px #f7f08b, 0 0 20px #f7f08b, 0 0 50px #f7f08b,
      0 0 100px #f7f08b;
  }
  