@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: "MVBoli"; 
  src: url("mvboli.ttf") format("truetype"); 
} 

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Montserrat, fantasy;
  overflow: hidden;
  transition: all 1s, color 0.3s, background-color 0.3s ease;
}

#header {
  background: linear-gradient(#ff934e, #fc686f);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 8px;
  box-sizing: border-box;
  transition: all 1.5s ease;
  color: white;
}

#header_content {
  transition: all 1s ease;
  padding: 20px;
  text-align: center;
}

#loroteam_logo {
  user-select: none;
  font-family: MVBoli;
  font-size: clamp(48px, 15vw, 150px);
  text-decoration: none;
  color: white;
  cursor: pointer;
  transition: all 0.2s, opacity 0.5s, font-size 1.5s, transform 1s ease;
  text-align: center;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}

#loroteam_logo:hover {
  transform: scale(1.3);
}


#content {
  width: 100%;
  scroll-behavior: smooth;
  overflow-y: auto;
  height: calc(100% - 60px);
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 15px;
  text-align: center;
  align-items: center;
  transition: all 0.5s;
}

.sex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.link {
  position: relative;
  transition: all 0.5s ease;
  border: 3px solid #FE8B54;
  border-radius: 25px;
  padding: 20px 30px;
  width: 90%;
  max-width: 1000px;
  font-weight: bold;
  font-size: 25pt;
  text-align: left;
  color: black;
  text-decoration: none;
}

.link:hover {
  transform: translateY(10px);
  color: white;
  background: #FE8B54;
  font-weight: normal;
  cursor: pointer;

}

.expanded {
  position: fixed;
  z-index: 1999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FE8B54;
  border-radius: 0px;
}

#link_content {
  visibility: hidden;
}

.arrow {
  position: absolute;
  right: 30px;
}


