/* About page */
#about {
  background-color: #5DBCD2;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 5rem 2rem;
  width: 100%;
}

#about-picture {
  height: 60vh;
  margin-left: 1rem;
  z-index: 0;
}

#about .filled-button {
  border-bottom: 2px solid #5DBCD2;
  border-right: 2px solid #5DBCD2;
}

.about-page {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 2rem 0;
  row-gap: 4rem;
}

.about-svg {
  display: block;
}

.about-svg-lower {
  background-color: #363636;
}

.fun-infos {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-content a {
  font-size: 1em;
  margin: 0;
  padding: 0;
  position: relative;
}

.info-content p {
  font-size: 1.5rem;
  margin: 0;
  position: relative;
}

.info-container {
  column-gap: 2rem;
  display: flex;
  justify-content: center;
}

.info-page {
  /* min-height: 100vh; */
}

.fun-info {
  width: 30vw;
}

.reverse {
  flex-direction: row-reverse;
}

.logo {
  width: 10vw;
}

.logo-container {
  align-items: center;
}

.technical-infos {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

/* Vertical Screens */
@media only screen and (max-width: 600px) {
  .fun-info {
    width: 50vw;
  }
}

@media only screen and (max-width: 800px) {
  .about-content {
    margin-top: 2rem;
  }

  .info-content {
    flex-direction: column;
  }

  .info-content p {
    font-size: 1.5rem;
  }

  .fun-info {
    width: 45vw;
  }

  .fun-infos .info-container {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (min-width: 800px) and (max-width: 950px) {
  .info p {
    font-size: 1.1rem;
  }
}

@media only screen and (min-width: 950px) and (max-width: 1100px) {
  .info p {
    font-size: 1.3rem;
  }

  .fun-info {
    width: 40vw;
  }
}

/* Horizontal Screens */
@media only screen and (min-width: 1650px) {
  /* for large desktop screens */
  .info p {
    font-size: 2.5rem;
  }
}