
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');


*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	line-height: 26px;
  font-weight: 400;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
}

a {
	text-decoration: none;
}

.about-container {
  width: 100%;
  background-color: rgb(17, 14, 14);
  background-image: url("https://i.ibb.co/2swmsX5/bgimage-2.jpg"), linear-gradient(180deg,  #a7a7a7 ,#bdbdbd 70% );
	background-blend-mode: overlay;
	background-size: cover;
	background-repeat: no-repeat;
	color: rgb(0, 0, 0);
  height: auto;
  color: white;
  display: flex;
  justify-content: center;
}

.about-container .content {
  width: 100%;
  padding: 30px;
  display: flex;
}

.about-container .content img{
  width: 100%;
  max-width: 500px;
  height: auto;
  padding-top: 100px;
 
}

.about-container .content .text{
   margin: 20px;
   padding-top: 100px;
   padding-right: 10px;
   max-width: 600px;
}
.about-container .content .text h1 {
  font-size: 40px;
  padding-bottom: 20px;
  font-family: 'DM Serif Text', serif;
}
.about-container .content .text p {
  font-size: 20px;
}

.about-container .content .socials {
  padding-top: 30px;
  
  
}
.about-container .content .socials a {
  color: #ffffff;
  font-size: 1.3em;
  margin-right: 20px;
}
.about-container .content .socials a i{
  transition: .3s;
}
.about-container .content .socials a i:hover{
  transform: scale(1.5,1.5);
  transition: .3s;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){
  .about-container {
    width: 100%;
    background-image: url("");
    background-color: rgb(63, 47, 47);
    background-blend-mode: overlay;
    background-size: cover;
    background-repeat: no-repeat;
    color: rgb(0, 0, 0);
    height: auto;
    color: white;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 700px){
   .about-container .content {
    flex-direction: column-reverse;
   }
   .about-container .content {
    padding: 10px;
  }
  .about-container .content img{
    width: 100%;
    /* max-width: 400px; */
    height: auto;
   
  }
}

@media only screen and (max-width: 700px){
  .about-container {
  margin-top: -110px;
}
}
