html, body {
  margin: 0;
  padding: 0;
  font-family: "MADE Dillan", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

body {
  background: url("../imgs/PATTERN.png");
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.content--border {
  width: 93vw;
}
.content--full {
  width: 100vw;
}

.row {
  display: flex;
  flex-direction: row;
}

.intro {
  height: 95vh;
  background: white;
  margin-top: 3vw;
  background: url("../imgs/BCKG.jpg");
  background-size: cover;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .intro {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.intro h1, .intro .title {
  position: relative;
  z-index: 9;
}
.intro h1 {
  height: 10%;
  margin: 2rem 2rem 0 2rem;
  font-size: 2rem;
}
.intro .title {
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intro .title h2 {
  font-size: 5.5rem;
}
@media (max-width: 900px) {
  .intro .title h2 {
    font-size: 2rem;
  }
}
@media (max-width: 900px) {
  .intro .title h3 {
    font-size: 1.5rem;
  }
}
.intro:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  background: #34495E;
  opacity: 70%;
}

.biography {
  background: #D1620E;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 900px) {
  .biography {
    flex-direction: column;
  }
}
.biography--portrait {
  border-radius: 100%;
  overflow: hidden;
  width: 40rem;
  height: 40rem;
  min-width: 40rem;
  min-height: 40rem;
  display: flex;
  align-self: center;
  justify-content: center;
  border: 2rem solid #34495E;
  position: relative;
  left: -10rem;
}
@media (max-width: 900px) {
  .biography--portrait {
    margin-top: 2rem;
    width: 20rem;
    height: 20rem;
    min-width: 20rem;
    min-height: 20rem;
    position: static;
  }
}
.biography--text {
  width: calc(100% - 40rem);
  position: relative;
  left: -5rem;
  color: white;
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  .biography--text {
    width: 90%;
    position: static;
  }
}

.references {
  background: #34495E;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.references h2 {
  font-size: 3rem;
  margin-top: 2rem;
  color: white;
}

.reference-list {
  width: 80%;
}

.reference {
  display: flex;
  flex-direction: row;
  margin-top: 2rem;
}
.reference:last-child {
  margin-bottom: 2rem;
}
.reference .round {
  background: white;
  border: 7px solid #D1620E;
  width: 10rem;
  min-width: 10rem;
  height: 10rem;
  min-height: 10rem;
  border-radius: 100%;
  text-align: center;
  font-size: 1.8rem;
  color: #34495E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reference > p {
  color: white;
  margin-left: 2rem;
  font-size: 1.3rem;
  font-weight: normal;
}

.technologies .technology {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
}
.technologies .technology h2 {
  font-size: 5rem;
}
.technologies .technology p {
  font-size: 1.3rem;
}
.technologies .technology:nth-child(even) {
  background: #34495E;
}
.technologies .technology:nth-child(odd) {
  background: #D1620E;
}
.technologies .technology h2, .technologies .technology p {
  width: 40%;
}

.contact {
  min-height: 50vh;
  background: #D1620E;
  color: white;
  text-align: center;
}
.contact h2 {
  font-size: 3rem;
  margin-top: 2rem;
  color: white;
}
.contact p, .contact li {
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  .contact p, .contact li {
    font-size: 1rem;
  }
}
.contact ul, .contact li {
  text-align: left;
  margin: 0;
  list-style: none;
}
@media (max-width: 900px) {
  .contact ul, .contact li {
    text-align: center;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 900px) {
  .contact .row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.contact .col {
  margin: 2rem;
  width: 50%;
}
@media (max-width: 900px) {
  .contact .col {
    width: 90%;
  }
}
.contact .col p {
  margin: 0;
}
.contact .col a {
  color: #34495E;
}