* {
  padding: 0;
  margin: 0;
}
body {
  max-width: 1600px;
  margin: 0 auto;
  padding:0px 20px;
}
img {
  max-width: 100%;
  object-fit: cover;
  height: 100%;
  object-position: center;
  min-width: 300px;
}
span{
  font-family: Inconsolata;
  font-weight: bold;
  text-transform: uppercase;
}
main {
  display: flex;
  align-items: center;
  gap:60px;
  padding-top: 100px;

}
h1 {
  font-size: 64px;
  margin-bottom: 30px;
  color:#333333;
  font-family: 'Space Mono';
  font-weight: bold;
}
p {
  font-size: 24px;
  margin-bottom: 30px;
  color:#4F4F4F;
  font-family: 'Space Mono';
  font-weight: 400;
}
a{
  text-decoration: none;
  text-transform: uppercase;
  background: #333333;
  color:#FFFFFF;
  display: inline-block;
  padding: 16px 20px;
  font-size: 14px;
  font-family: 'Space Mono';
  font-weight: bold;
}
footer{
 text-align: center;
 margin-top: 120px;
}
footer p{
  font-size: 16px;
}

@media (max-width:800px){
  h1{
    font-size: 48px;
  }
  main p{
    font-size: 18px;
  }
}

@media(max-width:700px){
  main{
    flex-direction: column;
  }
  img{
    width:500px;
  }
  footer p{
    font-weight: 14px;
    text-align: left;
  }
}