/*====   RESET   ================================ */
* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

:root {
  --header-height: 4.5rem;
}

body {
  font-family: 'Poppins', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  gap: 0.25rem;
  align-items: center;
  top: 15rem;
}

.container #logoipes {
  width: 30vw;
}

.container #logogov {
  width: 20vh;
  text-align: center;
}

@media screen and (max-width: 630px) {
  .container #logoipes {
    width: 100vw;
  }
}
