body {
  margin: 0;
  padding: 0;
  padding-bottom: 200px;
  font-family: "Reem Kufi";
  font-weight: 400;
  overflow-x: hidden;
  /* background-image: url("../images/background-n0-mia.jpg"); */
  background-image: url("../images/background-n0-mia.jpg");
  /* background-color: black; */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: rgb(216, 216, 216);
  font-size: 22px;
}


.about-main {
  display: grid;
  grid-template-columns: auto 900px auto;
  min-height: 80vh;
  margin-top: 50px;
}

.about-content {
  grid-column: 2/3;
  width: 100%;
  background: rgb(
    117,
    117,
    117
  ); /* Fallback for older browsers without RGBA-support */
  box-shadow: 10px 10px rgba(0, 0, 0, 0);
  background: rgba(209, 209, 209, 0);
  border-radius: 10px;
  padding: 10px;
  display: grid;
  grid-template-rows: 700px 1250px;
  /* background-color: tomato; */
  /* display: grid;
    grid-template-rows: auto auto; */
}

.content-1 {
  display: grid;
  grid-template-columns: 450px 500px;
}

.content-2 {
  padding: 0px 20px;
  border-radius: 10px;
  margin-top: 30px;
}
.content-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20px;
  flex-direction: column;
  
  margin-left: 20px;
  border-radius: 10px;
}

.about-image {
  height: 700px;
  width: 450px;
  border-radius: 10px;
  float: left;
  margin-right: 15px;
}
header {
  --text: #f4f4f4;
  --text-inverse: #333;
  --background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 3em;
  transition: background 250ms ease-in;
  background: var(--background);
  color: var(--text);
}

.header {
  /* background-color: black; */
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav__link {
  --spacing: 1em;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  padding: calc(var(--spacing) / 2) var(--spacing);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.nav__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: var(--spacing);
  right: var(--spacing);
  height: 2px;
  background: currentColor;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: -webkit-transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}

.nav__link:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav__link--btn {
  border: 1.5px solid currentColor;
  border-radius: 2em;
  margin-left: 1em;
  transition: background 250ms ease-in-out;
  letter-spacing: 1px;
  padding: 0.75em 1.5em;
}

.nav__link--btn:hover {
  background: var(--text);
  color: var(--text-inverse);
  border-color: var(--text);
}

.nav__link--btn::after {
  display: none;
}

.header {
  height: 100px;
  width: 100%;
  /* background-color: black; */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: white;
}

.content-2 {
}

@media screen and (max-width: 1400px){
  .wrapper ul li {
    width: 130px;
    font-size: 15px;
  }

}
@media screen and (max-width: 1080px) {

  .about-main {
    display: grid;
    grid-template-columns: auto 700px auto;

  }
  .content-1 {
    display: grid;
    grid-template-columns: 300px 485px;
  }
  .wrapper ul li {
    width: 100px;
    font-size: 13px;
  }
   
  .content-2 {
    font-size: 18px;
    height: fit-content;
  }
  .about-image {
    width: 400px;
    height: 600px
  }

  .content-text {
    margin-left: 100px;
    font-size: 18px;
    /* background: 10px 10px rgba(14, 13, 13, 0.5);  */
  }
}

@media screen and (max-width: 850px) {
  body {
    padding-bottom: 0px;
    background-image: none;
    background-color: black;
    width: 100%;
    overflow-x: hidden;
  }

  .header {
    display: none;
  }
  .content-text {
    padding-left: 0px
  }
  .about-content {
    display: flex;
    grid-template-columns: none;
    justify-content: center ;
    flex-direction: column;
    
  }
  .about-main {
    display: flex;
    grid-template-columns: none;
    
  }
  
  .content-1 {
    display: flex;
    grid-template-columns: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .content-2 {
    font-size: 18px;
    padding: 0px 30px;
    height: fit-content;
  }
  .content-text {
    margin-left: 0px;
  }
}

@media screen and (max-width: 550px) {
  body {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 400px) {
  .about-image {
    height: 400px;
    width: 275px;
  }

  
}
