* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: "Regular";
  max-width: 100vw;
}

:root {
  --darkbluecolor: #002e61;
  --lightbluecolor: #00a6e2;
  --darkgreycolor: #53575a;
  --whitecolor: #eafaffb0;
  --transparent-white-color: rgba(234, 250, 255, 0.75);
}

@font-face {
  font-family: "Regular";
  src: url("./Fuentes/VWHeadRegular.otf");
}

@font-face {
  font-family: "Bold";
  src: url("./Fuentes/VWHeadBold.otf");
}

body {
  width: auto;
  box-sizing: border-box;
  flex-shrink: 1;
  overflow-x: hidden;
}

/** Logo WhatsApp   **/

#logo-whatsapp {
  position: absolute;
  top: 670px;
  right: 30px;
  transition: 1s;
  border-radius: 50%;
}

#logo-whatsapp:hover {
  transform: scale(1.3);
}

h1 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  color: var(--darkbluecolor);
  border-bottom: 1px solid var(--darkbluecolor);
  width: 80%;
  margin: auto;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

@media screen and (min-width: 720px) {
  h1 {
    font-size: 40px;
    width: 36px;
    border-bottom: 4px solid var(--darkbluecolor);
    margin-bottom: 75px;
  }
}
