:root {
  --color-primario: #80183b;
  --color-fondo: #f5f5f5;
  --color-texto: #333;
  --color-boton: #80183b;
  --color-boton-hover: #80183b;
  --borde: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  overflow: auto;
  scrollbar-width: none;
}

body {
  background-color: var(--color-fondo);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}
button,
a,
.upload-box {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/*HEADER*/
header {
  background-color: var(--color-primario);
  width: 100%;
  height: 10vh;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.header-img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
header p {
  margin-right: 30px;
  flex-grow: 1;
  text-align: center;
  font-size: 3vh;
  color: white;
  font-weight: bold;
  align-items: center;
  align-content: flex-start;
}

/*NAV BAR DESPLEGABLE*/
.navbar {
  position: fixed;
  top: 0;
  left: -70%;
  width: 60%;
  height: 100%;
  background-color: white;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
  padding: 30px 20px;
  transition: left 0.5s ease-in-out;
  z-index: 1001;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar h2 {
  margin-bottom: 50px;
}

.navbar ul {
  list-style: none;
}

.navbar ul li {
  margin: 35px 0;
}

.navbar ul li a {
  text-decoration: none;
  font-size: 23px;
  color: #333;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #651c32;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}

.navbar.active {
  left: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/*FOOTER*/
footer {
  margin: 20px auto;
  height: 15vh;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer img {
  width: 23vh;
  margin-bottom: 10px;
}

footer p {
  font-size: 1.5vh;
  color: #7a7a7a;
  line-height: 1.3;
}
