* {
  font-family: "DM Serif Display", serif;
  box-sizing: border-box;
}
body {
  padding: 0;
  color: black;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  background-color: #ffffff;
}
div {
  padding: 0;
  margin: 0;
}
html {
  overflow-x: hidden;
  width: 100%;
}
h1 {
  letter-spacing: 0;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
}

#nav {
  max-width: 100%;
  padding: 24px 10%;
  position: absolute;
}

#logo {
  height: 48px;
}
#construction-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#cta-header {
  color: #17a089;
  text-align: center;
  font-size: 2.4em;
  font-weight: 400;
}

#svg-container {
  background: linear-gradient(rgba(23, 160, 137, 0.9), rgba(23, 160, 137, 0.5));
  border-radius: 50%;
  padding: 64px;
}
#svg {
  display: block;
  height: 120px;
}

@media only screen and (max-width: 640px) {
  #nav {
    max-width: 100%;
    padding: 24px 16px;
    position: absolute;
  }

  #logo {
    height: 48px;
  }
  #construction-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #cta-header {
    color: #17a089;
    text-align: center;
    font-size: 2em;
    font-weight: 400;
  }

  #svg-container {
    background: linear-gradient(
      rgba(23, 160, 137, 0.9),
      rgba(23, 160, 137, 0.5)
    );
    border-radius: 50%;
    padding: 40px;
    margin: 40px 0;
  }
  #svg {
    display: block;
    height: 80px;
  }
}
