* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: rgba(0, 0, 0, 0.5);
}
.header {
  background-color: rgba(0, 0, 0, 0.9);
  width: 100vw;
  height: 95dvh;
  position: relative;
}
a {
  text-decoration: none;
  color: rgb(212, 15, 212);
}
.menu {
  position: fixed;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px;
  color: rgb(196, 2, 196);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  text-transform: uppercase;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.loggo {
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s linear;
  &:hover {
    letter-spacing: 2px;
    color: white;
  }
}
.menuItems {
  display: flex;
  justify-content: space-evenly;
  width: 40%;
}
.itemMenu {
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s linear;
}
.itemMenu:hover {
  color: white;
}
.hero {
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.description {
  flex: 1.5;
  display: flex;
  justify-content: flex-end;
  color: white;
}
.imagePerson {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.imagePerson img {
  filter: drop-shadow(-2px -2px 4px white);
}
.namePerson {
  width: 70%;
}
.namePerson h1 {
  font-size: 2.5rem;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
  color: purple;
}
.namePerson p {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
.sections {
  position: relative;
  padding: 20px;
  margin: 35px auto;
  border: 1px solid rgb(95, 93, 93);
  border-radius: 15px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  width: 70%;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}
.sections .titleSection {
  font-size: 1.5rem;
  background-color: purple;
  padding: 5px 10px;
  color: white;
  border: 1px solid black;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sections:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.2);
}
.sections h2 {
  font-size: 1.5rem;
}
.sections h3 {
  font-size: 1.2rem;
  text-decoration: underline;
  margin-top: 10px;
}
.sections p {
  font-size: 1rem;
  text-align: justify;
  padding: 7px;
}
.sections .galary {
  width: 100%;
  padding: 5px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sections .galary .photos .photo img {
  width: 150px;
  height: 200px;
}
.sections .galary .photos {
  border: 2px solid purple;
  border-radius: 5px;
  box-shadow: 2px 2px 4px black;
  cursor: pointer;
  transition: all 0.2s linear;
  &:hover {
    transform: scale(2);
  }
}
.creativity video {
  margin: 20px auto;
  border: 2px solid purple;
  box-shadow: 2px 2px 4px black;
  width: 100%;
  aspect-ratio: 16/9;
}

footer {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-size: 1.2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 700px) {
  .header {
    height: auto;
  }
  .hero {
    border: 1px solid white;
    width: 100vw;
    height: auto;
    padding: 40px 2px;
    display: flex;
    flex-direction: column;
  }
  .description {
    padding: 40px 2px;
    width: 100%;
    justify-content: flex-start;
    padding-left: 5px;
  }
  .description p {
    text-align: justify;
    width: 100%;
  }
  .imagePerson img {
    width: 50%;
  }
  .sections .galary .photos {
    border: 1px solid white;
    width: 100%;
  }
  .sections .galary .photos .photo img {
    width: 100%;
    height: auto;
  }
  .menu {
    width: 100%;
    padding: 5px;
    justify-content: space-evenly;
  }
  .loggo {
    font-size: 1rem;
  }
  .itemMenu {
    font-size: 0.8rem;
  }
}
