.topsection {
  display: grid;
  max-width: 100vw;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr 2fr;
  margin-top: 5rem;
  margin-left: 5rem;
  grid-template-areas: "profilepic abouttitle" "profilepic abouttext";
}
.topsection .profilepic {
  grid-area: profilepic;
  margin-right: 2rem;
  border-radius: 50%;
  width: 20rem;
  height: 20rem;
  border: 0.5rem solid rgb(24, 24, 24);
}
@media screen and (max-width: 1000px) {
  .topsection .profilepic {
    width: 10rem;
    height: 10rem;
  }
}
@media screen and (max-width: 550px) {
  .topsection .profilepic {
    margin-right: 0;
  }
}
.topsection .about-title {
  grid-area: abouttitle;
  place-self: end start;
  margin-bottom: 0;
  font-size: 5rem;
}
@media screen and (max-width: 1000px) {
  .topsection .about-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 550px) {
  .topsection .about-title {
    place-self: unset;
  }
}
.topsection .about-text {
  grid-area: abouttext;
  margin-top: 0;
  max-width: 20rem;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 550px) {
  .topsection .about-text {
    text-align: center;
  }
}
@media screen and (max-width: 1100px) {
  .topsection {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .topsection {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 550px) {
  .topsection {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
  }
}

.contactsection {
  margin-left: 5rem;
  font-size: 1.1rem;
}
.contactsection h1 {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 550px) {
  .contactsection h1 {
    text-align: center;
  }
}
.contactsection .contact-text {
  font-weight: bold;
  margin-top: 0;
}
@media screen and (max-width: 550px) {
  .contactsection .contact-text {
    text-align: center;
  }
}
.contactsection .contactform {
  display: flex;
  flex-direction: column;
  max-width: 40rem;
}
.contactsection .contactform label {
  font-weight: bold;
  margin-bottom: 4px;
}
.contactsection .contactform .input {
  margin-bottom: 1rem;
  padding: 0.5rem;
}
.contactsection .contactform input, .contactsection .contactform textarea {
  border: 2px solid rgba(24, 24, 24, 0.5);
  font-family: inherit;
  color: rgba(24, 24, 24, 0.877);
  font-size: 1.1rem;
  font-weight: bold;
}
@media screen and (max-width: 550px) {
  .contactsection .contactform {
    align-items: stretch;
    text-align: center;
  }
}
.contactsection .send-button {
  background: white;
  outline: none;
  font-weight: bold;
  color: 2px solid rgba(24, 24, 24, 0.5) !important;
  padding: 0.5rem;
  cursor: pointer;
}
.contactsection .send-button:hover {
  border: 2px solid #5B8266;
  background: #5B8266;
  color: white;
}
@media screen and (max-width: 1100px) {
  .contactsection {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .contactsection {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 550px) {
  .contactsection {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }
}

.findmesection {
  margin-left: 5rem;
  font-size: 1.1rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.findmesection .contact-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}
.findmesection .contact-buttons a {
  background: #5B8266;
  text-decoration: none;
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.findmesection .contact-buttons a:hover {
  background: #71a182;
}
.findmesection .contact-buttons a img {
  opacity: 0.9;
}
@media screen and (max-width: 550px) {
  .findmesection .contact-buttons a {
    justify-content: center;
  }
}
@media screen and (max-width: 550px) {
  .findmesection .contact-buttons {
    flex-direction: column;
  }
}
@media screen and (max-width: 1100px) {
  .findmesection {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .findmesection {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 550px) {
  .findmesection {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 3rem;
    margin-left: 0;
  }
  .findmesection h1 {
    text-align: center;
  }
}

/*# sourceMappingURL=contact.css.map */
