* {
    box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #ede9de;
  color: #111;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
align-items: stretch;
align-content: stretch;
  min-height: 100vh;
}

.logo {
  height: 30vh;
  padding-left: 2.5rem;
  padding-top: 2rem;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.container {
    padding: 3rem;
    padding-top: 0;
    height: 70vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

h2 {
    margin: 0;
  font-size: clamp(2rem, 10vw, 130px);
  color: #FF4D00;
  font-family: 'Staatliches', sans-serif;
  letter-spacing: -1px;
  line-height: 0.93;
}

p {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #FF4D00;
  font-size: clamp(1rem, 3vw, 28px);
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
}

.email {
  color: #FF4D00;
  text-decoration: none;
  font-weight: bold;
}

.copyright {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    letter-spacing: -1px;
}

span{
  font-size: 0.95rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #e65100;
}

@media (max-width: 768px) {
  main, header .logo {
    position: static;
    padding: 1rem;
    text-align: left;
  }

  .container {
    flex-direction: column;
    justify-content: end;
    gap: 2rem;
  }

  .content {
    padding-top: 6rem;
  }

  .coming-soon {
    font-size: clamp(2rem, 10vw, 130px);
  }
}