body, html {
  height: calc(var(--vh, 1vh) * 100);
  width: 100dvw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.main-section {
  background: #783972;
  width: 100dvw;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo {
  width: 140px;
  width: 15vh;
}

.polaroid {
  width: 320px;
  width: 35vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram-btn {
  text-decoration: none;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.cta-image {
  width: 240px;
  width: 25vh;
  height: auto;
  display: block;
  border-radius: 2rem;
  transition: transform 0.2s;
  margin-bottom: 5vh;
}
.cta-image:hover {
  transform: scale(1.04);
} 