:root {
  --color-primary: #015c89;
  --color-secondary: #001e3b;
  --color-third: #545f76;
  --color-fourth: #ff751f;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins.woff2') format('truetype');
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}
body {
  font-family: Poppins;
  background-color: #f5f5f5;
  min-height: 100dvh;
}

#app {
  max-width: min(1480px, 90%);
  background-color: #fff;
  margin: 0 auto;
  min-height: 99dvh;
}

header {
  text-align: center;
}

nav {
  border-top: 2px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

nav ul {
  padding: 0.5em 0;
  display: flex;
  justify-content: space-between;
}

nav ul li {
  text-align: center;
  flex: 1;
  border-right: 1px solid var(--color-primary);
}

nav ul li a {
  color: #444;
  &:hover {
    text-decoration: underline;
  }
}

nav ul li:last-child {
  border: 0;
}
.mpios-tamps {
  color: var(--color-primary);
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  p {
    flex: 1;
    position: relative;
  }
  .bullet {
    font-size: 1em;
  }
}
#personal {
  max-width: min(880px, 90%);
  margin: 0 auto;
}

#personal * {
  font-size: 1em;
  text-align: center;
}

#valores {
  margin-top: 2em;
}

.under-construction {
  text-align: center;
  font-size: 8vw;
}
