@import url(mainstyle.css);

.introduction,
.image,
.social,
.social a {
  display: flex;
}

.introduction {
  flex-direction: column;
  justify-content: center;
  margin: 2rem;
}

.introduction p {
  text-align: justify;
}

.image {
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.introductionImage {
  border: 20px solid rgb(182, 198, 73, 1);
}
.row {
  display: flex;
  flex-direction: row;
}
.primary-button,
.secondary-button {
  display: inline;
  max-width: 250px;
  margin: 1rem;
  font-size: 1rem;
  border-radius: 25px;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
}

.primary-button {
  color: rgb(44, 66, 81, 1);
  background-color: rgb(255, 255, 255, 1);
  border: 2px solid rgb(255, 255, 255, 1);
}

.primary-button:hover,
.pramary-button:focus {
  background-color: transparent;
  color: white;
  cursor: pointer;
  text-decoration: underline;
  border: 2px solid white;
  text-decoration-color: rgb(182, 198, 73, 1);
  text-decoration-thickness: 3px;
}

.secondary-button {
  color: rgb(255, 255, 255, 1);
  border: 2px solid rgb(182, 198, 73, 1);
}

.secondary-button:hover,
.secondary-button:focus {
  border: 2px solid rgb(255, 255, 255, 1);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgb(182, 198, 73, 1);
  text-decoration-thickness: 3px;
}

.social {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.social a {
  justify-content: center;
  align-items: center;
  margin: 0 1rem 0 0;
  width: 80px;
  height: 80px;
  font-size: 1.75rem;
  border: 2.5px solid rgb(182, 198, 73, 1);
  border-radius: 50%;
  color: rgb(255, 255, 255, 1);
}

.social a:hover,
.social a:focus {
  border: 2.5px solid rgb(255, 255, 255, 1);
  cursor: pointer;
  color: rgb(44, 66, 81, 1);
}

hr {
  margin: 1.5rem 0 0 0;
  width: 150px;
  border: 1px solid rgb(255, 255, 255, 0.5);
}

@media (max-width: 800px) {
  .navbar,
  .content {
    flex-direction: column;
  }

  .navbar .logo {
    padding: 1rem 0 0 0;
  }

  nav {
    padding-top: 1rem;
  }

  .content {
    width: 100%;
    align-items: center;
  }

  .introduction {
    width: 80%;
    margin: 0 0 1rem 0;
  }

  hr,
  .navbar .contact {
    display: none;
  }

  .social {
    order: 3;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
  }

  .social a {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    font-size: 1.75rem;
    border: 2.5px solid rgb(182, 198, 73, 1);
    border-radius: 50%;
    color: rgb(255, 255, 255, 1);
  }

  .social a:hover,
  .social a:focus {
    border: 2.5px solid rgb(255, 255, 255, 1);
    cursor: pointer;
    color: rgb(44, 66, 81, 1);
  }

  .introductionImage {
    max-width: 90%;
    height: auto;
  }
}
