/* reset e box-sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* corpo e font */
html, body {
  height: 100%;
  font-family: 'Nunito Sans', sans-serif;
  background-color: #f0faff;
  color: #004466;
  overflow: hidden;
}

/* wrapper per centrare */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 40px 20px;
}

/* layout content due colonne */
.content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
  flex-wrap: wrap;
}

/* colonna testo */
.text-area {
  max-width: 440px;
  flex: 1;
}

.text-area h1 {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0099dd;
}

.text-area h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.text-area p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* bottone home */
.button {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  line-height: 24px;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: background 0.4s, border-color 0.4s, color 0.4s;
  padding: 9px 28px;
  background-color: #ebebeb;
  color: #151515;
  border-color: #ebebeb;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0099dd;
  z-index: -1;
  opacity: 0;
  transform: scale3d(0.7, 1, 1);
  transition: transform 0.4s, opacity 0.4s;
}

.button:hover::before {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.button:hover {
  color: #fff;
  border-color: #0099dd;
}

/* colonna immagine */
.image-area {
  flex: 1;
  max-width: 540px;
  min-width: 280px;
  text-align: center;
}

.image-area svg#coming_soon {
  width: 100%;
  max-width: 250px;
  height: auto;
}

/* responsive */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .text-area h1 {
    font-size: 2.4rem;
  }

  .text-area h2 {
    font-size: 1.5rem;
  }

  .text-area p {
    font-size: 1rem;
  }

  .button {
    font-size: 1rem;
    padding: 14px 28px;
  }
}
