html,
body {
  margin: 0;
  padding: 0;
  font-family: "Arial Nova Light", Arial, Helvetica;
  background-color: rgb(255, 95, 69);
  display: flex;
  flex-direction: column;
}

@font-face {
  font-family: "Arial Nova Light";
  src: url("fonts/ArialNova-Light.ttf") format("truetype");
}

section {
  padding: 60px 30px;
}

section .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  animation: fadeIn 0.5s forwards;
}

.about,
.information,
.profile {
  height: 30vh;
  margin-top: 30vh;
}

.image {
  width: 70vh;
  height: auto;
}

.text {
  max-width: 70vh;
  text-align: left;
}

.information .content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  position: relative;
}

.profile .content {
  display: flex;
  justify-content: center;
}

.small-image {
  width: 20vh;
  height: auto;
  align-self: flex-start;
  margin-top: 14px;
}

h1 {
  font-size: 16px;
  color: white;
  font-style: italic;
  font-family: Arial, sans-serif;
}

p {
  font-size: 12pt;
  line-height: 1.2;
  font-family: "Arial Nova Light", Arial, Helvetica;
  color: white;
  text-align: justify;
}

h2 {
  font-size: 12pt;
  line-height: 1.2;
  font-family: Arial, sans-serif;
  color: white;
}

.experience-item {
  margin-bottom: 10px;
}

.experience-item h2 {
  font-size: 10pt;
  font-style: italic;
  font-family: Arial, sans-serif;
  color: white;
}

.experience-item h1 {
  font-size: 8pt;
  font-style: italic;
  font-family: Arial, sans-serif;
  color: white;
  margin-bottom: 0px;
}

.experience-item p {
  font-size: 8pt;
  font-family: "Arial Nova Light", Arial, Helvetica;
  color: white;
  margin: 0;
}


@media screen and (max-width: 768px) {
  .about .content,
  .information .content,
  .profile .content {
    flex-direction: column;
    text-align: center;
    margin-top: -25vh;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .information .text {
    order: 1;
  }

  .information .image {
    order: 2;
  }

  .profile .text {
    order: 2;
  }

  .profile .small-image {
    order: 1;
  }

  .image{
    width: 100%;
  }

  .text {
    max-width: 100%;
  }

  h1 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
    line-height: 1.4;
  }
  .profile .text {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
  }
}