@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;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  height: 100%;
  box-sizing: border-box;
  transition: all 1s ease;
  color: white;
}

#header p {
  transition: all 1s ease;
}

#loroteam_logo {
  font-family: MVBoli;
  font-size: 20pt;
  text-decoration: none;
  color: white;
  opacity: 0;
  transition: all 1s ease;
}


#navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: all 1s ease;             
}

#header a {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 1s ease;  
}

.content {
  scroll-behavior: smooth;
  overflow-y: auto;
  height: calc(100% - 60px);
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 15px;
}

.title {
  border-radius: 25px;
  width: 100%;
  color: #FE8B54;
  background-color: #FDD2BE;
  display: flex;
  justify-content: center; 
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

#title {
  text-transform: uppercase;
}

.title:hover {
  transform: scale(1.01);
}

.title:active {
  transform: scale(0.90);
}

@media (min-width: 515px) {
  .title {
    font-size: 26pt;
    height: 100%;
  }
  .sexy {
    padding-top: 100px;
  }
}



.sexy {
  min-height: 100%;
}

.sex {
  text-decoration-color: #FDD2BE;
}

.information {
  width: 100%;
  display: flex;
  justify-content: center; 
  text-align: center;
}

.container {
  display: flex;
  gap: 30px;
  box-sizing: border-box;
  flex-direction: column; 
  max-width: 1200px;
  width: 100%;
}

.box {
  position: relative;
  border: 1px solid #FE8B54;
  border-radius: 25px;
  padding: 20px;
  text-align: left;
  transition: all 0.2s ease;
  cursor: default;
}

.box:hover {
  transform: translateY(-5px)
}

.box h3 {
  color: #FE8B54;
  margin-top: 0;
}

.box p {
    margin: 10px 0;
    padding-bottom: 30px;
}

.box svg {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: auto;
    fill: #FDD2BE;
}

.box .uwu {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 45px;
  font-family: "Noto Sans";
  padding: 0;
  color: #FDD2BE;
}

ol li::marker {
  color: #FE8B54;
  font-weight: bold;
}

@media (min-width: 975px) {
  .container {
    flex-direction: row;
  }
  .box {
    flex: 1;
  }
}

button {
  font-family: Montserrat;
  color: #FE8B54;
  font-size: 15px;
  font-weight: bold;
  background-color: #FDD2BE;
  padding: 10px;
  border: none;
  border-radius: 10px;
  transition: all 0.5s ease;
  cursor: pointer;
}

button:hover {
  transform: scale(1.10);
}

button:active {
  transform: scale(0.8);
}