html {
  overflow: scroll;
}

@font-face {
  font-family: Eklysium;
  src: url("src/Fonts/Eklysium_Font_V5.ttf") format("truetype");
}

.wrapper {
  display: flex;
  color: aliceblue;
  padding-top: 2vw;
  justify-content: center;
  font-family: Eklysium;
}

.collapsible {
  width: 85vw;
  overflow: hidden;
  font-weight: 500;
}

hr {
  margin-top: -20px;
}

.collapsible input {
  display: none;
}

.collapsible label {
  position: relative;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 15px;
  border-bottom: 5px;
  border-color: aliceblue;
  display: block;
  font-size: 4vw;
  z-index: 1;
}

#flecha8,
#flecha7,
#flecha6,
#flecha5,
#flecha4,
#flecha3,
#flecha2,
#flecha1,
#flecha0 {
  transition: transform 0.3s ease;
}

#collapsible-head8:checked ~ label i {
  transform: rotate(90deg);
}

.collapsible-text {
  max-height: 0px;
  overflow: hidden;
  border-radius: 4px;
  line-height: 1.4;
  position: relative;
  top: -1%;
  opacity: 0.5;
  transition: all 0.5s ease;
  display: flex;
}
.collapsible input:checked ~ .collapsible-text {
  max-height: 30vw;
  padding-bottom: 25px;
  opacity: 1;
  top: 0;
}

.cover {
  height: 20vw;
  width: 20vw;
}

.links {
  color: aliceblue;
  list-style-type: none;
  font-size: 2.5vw;
  margin-left: 15vw;
  margin-top: 50px;
}
.links li a {
  color: aliceblue;
  text-decoration: none;
}

.links li:hover {
  background-color: #4d3157;
  border-radius: 15px;
  padding: 5px;
}
