@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');

body{
  background-color: #000000;
}

.container{
  width: 1200px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0px 50px;
}

.title{
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1,3%;
  color: #F5F3F5;
  width: 561px;
  text-transform: uppercase;
}

@media screen and (max-width: 992px) {
  .container{
    width: 704px;
    flex-wrap: wrap;
  }

  .title{
    font-size: 28px;
    font-weight: 700;
    line-height: 1,3%;
    width: 392px;
    text-transform: none;
  }

  img{
    height: 285px;
    margin-left: auto;
  }
}


    
@media screen and (max-width: 768px) {
  .container{
    width: 335px;
  }
}


