@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-image: url("/images/notebook.svg");
}
main {
  flex-direction: row;
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  gap: 100px;
}
.hero-container {
  margin-top: 50px;
}
.hero-container > img {
  max-height: 725px;
}
.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 167px;
  margin-right: 150px;
}
.intro > h1 {
  font-size: 19px;
  font-weight: 400;
}
.intro > .letters {
  display: flex;
}
.letters > #i {
  margin-right: -10px;
}
.letters > #t {
  margin: -5px;
}
.letters > #a {
  margin: -10px;
}
.intro > .letters > img {
  height: 125px;
  width: 105px;
}
.letters img:hover {
  transform: rotate(-5deg) scale(1.05);
  transition: transform 0.2s ease;
}

.intro > .bio {
  text-align: center;
  font-size: 19px;
  letter-spacing: 0.3px;
  padding: 24px 0 10px 0;
}
.intro > .bio > div {
  position: relative;
  max-width: max-content;
  margin: 0 auto;
}
.title {
  margin: 0;
  font-weight: 500;
}
.intro > .bio > div > img {
  position: absolute;
  top: 16px;
  left: -10px;
  width: 200px;
  z-index: -10;
}
.bio-text {
  margin-top: 32px;
  line-height: 30px;
  max-width: 500px;
}
.resume {
  border: none;
  background-color: rgb(52, 62, 105);
  cursor: pointer;
  padding: 8px 22px;
  border-radius: 4px;
}
.resume:hover {
  background-color: rgb(84, 84, 130);
}
.resume > a {
  color: white;
  letter-spacing: 0.7px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.resume-star {
  height: 20px;
  display: inline-block;
}
.star {
  position: absolute;
  height: 205px;
}
.star-decor-1 {
  right: 0;
  top: 0;
}
.star-decor-2 {
  left: 0;
  bottom: 0;
}
.hero-mobile {
  display: none;
}
@media only screen and (max-width: 1300px) {
  main {
    align-items: center;
    justify-content: center;
    padding: 0px;
  }
  .hero-container {
    padding: 0;
  }
  .hero-container {
    display: none;
  }
  .hero-mobile {
    display: block;
    max-width: 600px;
  }
  .intro {
    margin-top: 0;
    margin-right: 0;
  }
  .intro > .letters > img {
    height: 95px;
    width: 75px;
  }
  .bio-text {
    padding: 15px;
  }
}
