@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

html {
    max-width: 2200px;
    margin: auto;
}
h1{
  font-family: 'Playfair Display', serif;
  margin: 0;
}
*{
  font-family: 'Open Sans', sans-serif;
  color: white;
}
a{
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #ff1a84;
}
p {
  margin: 0;
}
img{
  width: 100%;
}
section.main-sec {
  background: #512223;
}
.contact-row {
    display: flex;
    flex-wrap: wrap;
}
.logo-row {
  display: flex;
}
.side-content {
  row-gap: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}

@media (min-width: 992px){
  p, a {
    font-size: clamp(12px, 1.12vw, 20px);
  }
  h1{
    font-size: clamp(40px, 3vw, 60px);
  }
  section.main-sec {
    height: 100vh;
    display: flex;
    align-items: center;
  }
  .side-img img{
    width:85%;
  }
  .image-container {
    margin-right: auto;
  }
  .logo-row {
    justify-content: space-between;
    width: 90%;
  }
  .contact-row {
    gap:20px;
  }
}

@media (min-width: 1200px){

  section.main-sec {
    height: 100vh;
    display: flex;
    align-items: center;
  }
  .image-container img {
    width: 95%;
    max-width: 155px;
  }
}


@media (max-width: 1199.9px){
  .image-container img{
    width: 60%;
  }
}
@media (max-width: 991.9px){
  .logo-row {
    justify-content: center;
  }
  .image-container {
    text-align: center;
  } 
  .side-content {
    text-align: center;
  }
  section.main-sec {
    padding: 15vw 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .side-content {
    padding-top: 50px;
  }
  .contact-row {
    justify-content: center;
    gap: 20px;
  }
  .image-container img {
    width: 75%;
  }
}
@media (max-width: 420.9px){
  .contact-row {
    gap: 5px;
    flex-direction: column;
  }

}