


:root {
  --orange: #f0c013;
  --black: black;
  --white: white;
}
img {
  width: 100%;
}
body {
  margin: 0;
  display: flex;
  justify-content: center;
  background-color: var(--black);
  min-height: 100vh;
  font-family: "Roboto Serif", serif;
}

.main {
  width: 950px;
  min-height: 100vh;
  background-color: var(--orange);
  
  display: flex;
  align-items: center;
  flex-direction: column;
}
.header {
  background-color: var(--black);
  color: var(--orange);
  font-size: 20px;
  width: 950px;
  display: flex;
  justify-content: center;

}
.header h2{
  display: none;
}
.header-text {
  width: 800px;
}
.me {
  display: flex;
  max-width: 800px;
  min-height: 90vh;
}
.me-pic {
  flex: 2;
  padding-top: 15px;
}
.me-text {
  margin: 0px 15px;
  flex: 3;
  text-align: justify;
  text-justify: inter-word;
  font-size: 15px;
}
.text-span-1{
  font-size: 20px;
  font-weight: bold;
  
}
.data a {
  color: #f0c013;
}
.data {
  background-color: rgb(0, 0, 0);
  height: auto;
  color: #f0c013;
  text-align: center;
  width: 100%;
  position: static;
  }

@media screen and (max-width: 798px){
  .data {
   
    text-align:center;
    color: #f0c013;
    background-color: rgb(0, 0, 0);
    position: static;
  }
  .main{
    height:auto;
  }
.header{
width: 100%;
background-color: var(--black);
justify-content: start;
color: var(--orange);
font-size: 16px;
}
.header h2{
  margin: 37px 15px;
  display: block;
}
.header-text{
  display: none;
}
.me{
  display: block;
}
.me-pic{
  margin: 0px 15px;
}
.me-pic img{
  object-fit: contain;
}

}