/*
MENOS SATURACION
*/
/*
MAS SATURACION
$green: #D5E8D4;
$pink: #F8C8DC;
$blue:	#DCEBF9;
$purple: #EADCFD;
$yellow: #FDF1DC;
*/
/*
PUNTO MEDIO
$green:  #E3F0E2;
$pink:   #FAD6E4;
$blue:   #E6F0FA;
$purple: #F0E4FB;
$yellow: #FCF2E2;
*/
* {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: "Send Flowers", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  background-color: #FEF9F0;
}

a {
  text-decoration: none;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
}
a.black {
  color: #7a7a7a;
}
a.black:visited {
  color: #7a7a7a;
}
a.white {
  color: #f7f8f9;
}
a.white:visited {
  color: #f7f8f9;
}

i {
  font-size: 1.2rem;
  color: rgb(244.4375, 191.625, 96.5625);
}

button {
  outline: none;
  border: none;
  background-color: transparent;
}

h1, h2, h3, h4, h5 {
  color: rgb(244.4375, 191.625, 96.5625);
  padding-left: 0.25rem;
}

.black {
  color: #7a7a7a;
}

.white {
  color: #f7f8f9;
}

section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.header__buttons {
  height: 100%;
  display: flex;
  gap: 1rem;
  overflow: hidden;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #FEF9F0;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1.5rem;
  transition: right 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}
.offcanvas.open {
  right: 0;
}
.offcanvas__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  align-self: flex-end;
  cursor: pointer;
  color: #7a7a7a;
}
.offcanvas__content {
  margin-top: 2rem;
}
.offcanvas__content a {
  display: block;
  margin: 1rem 0;
  color: #7a7a7a;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
.offcanvas__content a:hover {
  color: rgb(96.5, 96.5, 96.5);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}
.overlay.visible {
  opacity: 1;
  visibility: visible;
}

section.building {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100vw;
  height: 100vh;
}
section.building > p {
  font-size: 32px;
  overflow: hidden;
  text-align: center;
}/*# sourceMappingURL=main.css.map */