html,
body,
.flex-outer {
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.no-mobile {
  display: none;
}

.flex-outer {
  display: flex;
  flex-direction: column;
}
.flex-top {
  height: 70%;
  color: #fadfc8;
  background: #ad5d5d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-bottom {
  height: 30%;
  color: #ad5d5d;
  background: #fadfc8;
  display: flex;
  padding-top: 50px;
  box-sizing: border-box;
  justify-content: center;
  align-items: flex-start;
}
.flex-bottom span {
  padding: 0 20px;
}
h1 {
  font-size: 10vw;
  font-weight: 700;
}
p {
  font-size: 5vw;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  padding: 0;
}
a {
  color: #ad5dad;
  -webkit-text-fill-color: #ad5d5d;
  text-decoration: none;
}
a:hover {
  color: #fff;
  -webkit-text-fill-color: #fadfc8;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ad5d5d;
}

@media screen and (min-width: 620px) {
  p {
    font-size: 3vw;
  }
}

@media screen and (min-width: 1000px) {
  .no-mobile {
    display: initial;
  }
  p {
    font-size: 2vw;
  }
  p:first-child {
    border-right: 4px solid #ad5d5d;
    padding-right: 20px;
  }
  p:last-child {
    border: 0;
    padding-left: 20px;
  }
}
