
html{
  overflow: auto;
  /*Taka opravqm skrola
    Sushto taka, ne slagai dumichkata .content NIKADE!!!
    V main.css ima .content = 100vh :D
  */
  
  /* background-color: #363953; */
  /* background-color: var(--secondary); */
}

.content{
  max-width: 1224px;
  width: 90%;
  margin: auto;
  padding: 40px 0;
  margin-top: 12vh;
}

.title{
  color: var(--main);
  /* color: white; */
  margin-bottom: 2rem;
  text-align: center;
  font-size: 40px;
}

.gallery{
  display: flex;
  gap: 20px;
}


.column{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 

.photo img{
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

@media(max-width:768px){
  .gallery{
    flex-direction: column;
  }
  .title{
    font-size: 30px;
  }
} 