body {
  color: #333;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
}

.contact-page {
  width: 100vw;
  height: 100vh;
  background-image: url('../images/monika_barevna.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-heading {
  color: #fff;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
  position: absolute;
  top: auto;
  bottom: 40%;
  left: 55%;
  right: auto;
}

.contact-button {
  color: #fff;
  background-color: #494949;
  border-radius: 2rem;
  padding: 1rem 5rem;
  text-decoration: none;
  transition: all .2s;
  position: absolute;
  top: auto;
  bottom: 30%;
  left: 55%;
  right: auto;
}

.contact-button:hover {
  color: #494949;
  background-color: #fff;
}

.vcard-section {
  width: 100vw;
  height: 100vh;
  background-color: #101318;
  position: relative;
}

.contact-wrapper {
  width: 45%;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 60px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 10%;
  right: auto;
}

.profile-picture {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 200px;
  margin-bottom: 80px;
}

.contact-details-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: 70px;
  display: flex;
}

.prefix {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.column-1, .column-2 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-direction: column;
  display: flex;
}

.contact-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.download-button {
  color: #fff;
  background-color: #494949;
  border-radius: 2rem;
  margin-top: 58px;
  padding: 1rem 5rem;
  text-decoration: none;
  transition: all .2s;
}

.download-button:hover {
  color: #494949;
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  .contact-page {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    background-position: 35%;
    align-items: center;
    display: flex;
  }

  .main-heading {
    text-align: center;
    position: static;
    left: 30%;
  }

  .contact-button {
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .main-heading {
    font-size: 4rem;
  }

  .vcard-section {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .contact-wrapper {
    width: auto;
    align-items: center;
    position: static;
  }

  .profile-picture {
    margin-bottom: 40px;
  }

  .contact-details-wrap, .download-button {
    margin-top: 50px;
  }

  .contact-heading {
    text-align: center;
    font-size: 4rem;
  }
}

@media screen and (max-width: 479px) {
  .contact-page {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    background-position: 25%;
    background-size: cover;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 250px;
    padding-left: 50px;
  }

  .main-heading {
    text-align: left;
    margin-top: -175px;
    font-size: 3rem;
  }

  .vcard-section {
    align-items: flex-start;
  }

  .contact-wrapper {
    padding-top: 60px;
  }

  .download-button {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .contact-heading {
    font-size: 3rem;
  }

  .body {
    background-color: #101318;
  }
}


