html, body {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	background-color: rgba(81, 57, 36, 0.57);
  min-height: 100vh;
	
}
button {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
}

html {
  font-size: clamp(12px, 1vw, 16px);
  
}

* {
  box-sizing: border-box;
  
}

*[style*="display: block"] {
  display: flex !important;
}

body.bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0, 0.4);
}

/* HEADER */


header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
	justify-content: flex-start;
	width: 100vw;
  padding: 0.5rem;
  background-color: rgb(50, 50, 50, 1);
  color: white;
	border: 0.2rem solid black;
  -webkit-box-shadow: 1px 5px 7px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 5px 7px 2px rgba(0, 0, 0, 0.5);
	gap: 5rem;
	padding-left: 5rem;
}

header i.fa-solid {
	font-size: 3rem;
	cursor: pointer;
  display: none;
}



header h1 {
  text-align: center;
}

header .switch {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;

  height: 6rem;
  width: 6rem;
}

header .switch span {
  text-decoration: underline;
}
header .switch button {
  width: 100%;
  color: white;
  background-color: transparent;
  border: 0.2rem solid rgb(50, 50, 50, 1);
}

header .switch button:hover {
  border: 0.2rem solid white;
  cursor: pointer;
}



@media screen and (width <= 800px) {
  header {

    justify-content: space-evenly;
    gap: 0;
    padding: 0;
  
  }

  header h1 {
    font-size: 14px;
    
  }

  header i.fa-solid {
    display: flex;
  }

  
}

@media screen and (width <= 415px) {
  header {
   padding: 0 1.25rem 0 1.25rem;
  }
}
