@import "reset.css";
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

body {
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
  font-family: "Cormorant", serif;
}

main {
  display: flex;
  flex-direction: row;
}

main .left {
  flex: 1 0 0;
  padding: 105px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

main .right {
  height: 100vh;
  overflow: hidden;
}

main .left h1 {
  font-size: 86px;
  line-height: 86px;
  font-weight: 700;
  letter-spacing: -3px;
}

main .left h1 span {
  color: rgba(212, 54, 58, 1);
}

main .right img {
  height: 100vh;
}

main .left p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  font-style: italic;
}

main .social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
}

