* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Courier New", Courier, monospace;
}

h2 {
  font-size: 1rem;
  margin-bottom: 20px;
}

p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

body {
  background-color: #60212e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  color: #c85570;

  section.hero-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    text-align: center;
  }

  section.about {
    display: flex;
    background-color: #e78d3b;
    width: 100%;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #60212e;

    & > div {
      width: 100%;

      &.left-col {
        margin: 20px 0;
        text-align: center;
      }

      &.right-col {
        margin-top: 20px;
        padding-bottom: 120px;
      }
    }

    @media (min-width: 768px) {
      flex-direction: row;
      padding: 10%;

      & > div {
        width: 50%;

        &.left-col {
          margin: 0;
          text-align: left;
        }

        &.right-col {
          margin-top: 0;
          padding-bottom: 0;
        }
      }
    }

    img {
      margin: 0 auto;
      max-width: 70%;
      height: auto;
    }
  }

  img {
    max-width: 640px;
    width: 90%;
  }

  .instagram {
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    left: 0;
  }
}

/* Mailchimp form styles */
#mc_embed_signup {
  margin-top: 3rem;
  background: transparent;
  clear: left;

  .indicates-required {
    display: none !important;
  }

  h2 {
    display: none !important;
  }

  .mc-field-group {
    label {
      display: block;
      margin-bottom: 5px;
    }

    input {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border: transparent;
      border-radius: 4px;
      background-color: rgba(255, 255, 255, 0.3);
    }
  }

  input[type="submit"] {
    background-color: #60212e;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 10px 20px;
    border-radius: 4px;

    &:hover {
      background-color: #a03d4f;
    }
  }
}

.refferal_badge {
  display: none !important;
}
