html {
  height: 100%;
  min-height: 100%;
  position: relative;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  background-color: grey;
}

body {
  height: 100%;
  min-height: 100%;
  position: relative;
}

footer {
  max-height: 56px;
  background-color: #030e12;
  color: white;
}

span, p {
  font-family: "Segoe UI Light", "Segoe WPC", "Segoe UI", Helvetica, Arial, "Arial Unicode MS", Sans-Serif;
}

a {
  font-family: "Segoe UI Light", "Segoe WPC", "Segoe UI", Helvetica, Arial, "Arial Unicode MS", Sans-Serif;
  color: white;
  text-decoration: none;
}
a:hover {
  color: white;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

section {
  width: 100%;
}

.text-black {
  color: #030e12;
}

.root {
  max-width: 100%;
  align-items: center;
  display: flex;
  min-height: calc(100vh - 56px);
  flex-direction: column;
  background: none;
}

.special-highlight {
  position: relative;
  font-weight: 700;
  white-space: nowrap !important;
}
.special-highlight:before {
  background-image: linear-gradient(to right, #fcde67, #ffc226);
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: 60%;
  left: -2px;
  bottom: 0;
  z-index: -1;
  transform: rotate(-2deg);
}

@media (min-width: 576px) {
  .root {
    padding-top: 1.5rem !important;
  }
}
@media screen and (min-width: 0px) and (max-width: 459px) {
  .hide-small-screen {
    display: none;
  }
}
@media screen and (min-width: 460px) {
  .hide-large-screen {
    display: none;
  }
}
@media all and (max-width: 700px) {
  .myP {
    padding: 2%;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-fade-in {
  -webkit-animation: fadeIn 1s;
          animation: fadeIn 1s;
}/*# sourceMappingURL=style.css.map */