* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: "Instrument Serif", serif;
}

body {
  background-color: #F2EEDA;
  color: #CC4C33;
}

/* Main full-screen container */
.wrapper {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
} 

/* Header */
.logo {
    width: 160px;
}
.header {
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 20px 0;
}


/* Center area */
.content {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.textcont {
    display: flex;
    gap: 260px;
    font-size: 54px;
}
.icon {
  width: 120px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
}


/* Footer */
.footer {
    text-align: center;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
.footer p {
  margin: 0;
}
.instagram {
    width: 20px;
}



@supports (height: 100dvh) {
  .wrapper {
    min-height: 100dvh;
  }
}




/* Mobile Layout */
@media (max-width: 768px) {

  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .textcont {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 180px;
    font-size: 32px;
  }

  .icon {
    width: 100px;
  }

  .footer {
    font-size: 14px;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .content {
    gap: 24px;
  }
  .textcont {
    gap: 140px;
    font-size: 28px;
  }
  .icon {
    width: 80px;
  }
}