/* aboutme-stylesheet */
/*
/* aboutme section */
.aboutme-section {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
}

.aboutme-image {
  width: 50%;
  height: 75vh;
  /* display: block; */
  /* The CSS property display: block is used to change the default behavior of an element from inline to block-level. 
    When an element has a block display value, it will start on a new line and take up the full width available by default. 
    This means that other elements will be pushed down or up to make room for it. */
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-attachment: fixed;
  background-position-x: center;
  background-position-y: center;
  object-fit: cover;
  object-position: top;
  /* The CSS property object-fit: cover is used to adjust to any image frame/size for all devices */
}

.aboutme-text-container {
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: left;
  margin: auto;
  width: 50%;
  /* height: 75vh; */
  line-height: 30px;
  padding: 1rem;
}

.aboutme-title {
  width: 50%;
  font-size: 2rem;
  font-family: "Archivo Black", sans-serif;
  color: white;
}

.aboutme-sub-title {
  width: 50%;
  font-size: 1.5rem;
  font-family: "proxima-nova", sans-serif;
  color: white;
  padding: 1rem 0rem;
}

.aboutme-text {
  width: 50%;
  font-size: 1rem;
  font-family: "proxima-nova", sans-serif;
  color: white;
}

/* button  */
.container-button-aboutme {
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 0rem;
  width: 50%;
}

.my-button {
  background-color: white;
  color: black;
  border: none;
  height: 75px;
  width: 275px;
  border-radius: 8px;
  font-size: 1rem;
  padding: 10px 20px;
  cursor: pointer;
}

.my-button:hover {
  background-color: #7393b3;
  color: black;
}

/* media quieries */
/* Desktop */
@media screen and (max-width: 667px) {
  .show-on-desktop-aboutme {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .section-settings {
    height: 100vh;
  }
}

/* Mobile */
@media screen and (min-width: 668px) {
  .hide-on-desktop-aboutme {
    display: none;
  }
}

@media screen and (max-width: 667px) {
  .mobile-image-settings {
    width: 100%;
    height: 45vh;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .mobile-section-settings {
    height: 100%;
  }

  .mobile-text-container-settings {
    width: 100%;
  }

  .mobile-text-settings {
    padding-top: 1rem;
  }

  /* increases size of button on mobile view so it spans across device */
  .increase-size-on-mobile-aboutme {
    width: 100% !important;
  }
}

/* media quieries - Desktop & Ipad & Mobile */
/* helps with image sizing for vertical/horizontal view across all devices */
@media screen and (max-width: 1200px) {
  .mobile-media-settings {
    width: 100%;
  }

  .ipad-media-settings {
    width: 100%;
  }
}

@media screen and (max-width: 1680px) {
  .ipad-image-size {
    height: 750px;
  }
}

@media screen and (max-height: 665px) {
  .image-size {
    height: 750px;
  }
}

/* iphone se device horizontal view */
@media only screen and (min-width: 667px) and (max-height: 375px) {
  .iphone-se-image-settings {
    width: 100%;
    height: 85vh !important;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .iphone-se-section-settings {
    width: 100% !important;
  }

  .iphone-se-container-settings {
    width: 100% !important;
  }

  .iphone-se-text-settings {
    padding-top: 1rem;
  }
}
