body, html {
  background-color: #0c0c0c;
}
.main-block {
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Fjalla one;
  width:100%;
}
.main-block h1 {
  font-size: 36px;
  margin-bottom: 0;
  font-weight: 100;
  margin-bottom: 35px;
}
.main-block p {
  font-size: larger;
  margin-top: 0;
  margin-inline: 15px;
}

.crop-img {
  width:75%;
  aspect-ratio: 1/1; 
  border-radius: 16px;
  margin-bottom: 35px;
}

.crop-img img{
  width:100%; 
  height:100%; 
  object-fit:cover;
}

@media screen and (min-width: 768px) {
    .main-block p {
        margin-inline: 150px;
        max-width: 768px;
    }
    .crop-img {
        width: 500px;
    }
}