.nav {
  background-color: #f36664;
}

.nav_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.nav_logo {
  width: 30%;
}

.nav_logo img {
  width: 100%;
}

.nav_links > * {
  all: unset;
  font-size: 3rem;
  font-weight: 700;
  cursor: pointer;
  margin: auto;
}

.nav_links {
  display: flex;
  gap: 3rem;
  padding-right: 1rem;
  color: white;
  
}

.nav_account {
  width: 5rem;
  height: 5rem;
  cursor: pointer;

  position: relative;
}

.nav_account > img {
  height: 100%;  
}

.nav_accountMenu {
  position: absolute;
  top: 5rem;
  right: 0rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  
  width: 10rem;
  height: 10rem;
  
  border-radius: 1.5rem;
  border-width: 2px;
  border-style: solid;
}

.nav_accountMenu > p {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;

  cursor: pointer;
}

.auth {
 height: 100svh;
 display: flex;
 align-items: center;
 justify-content: center;
 overflow: hidden;
}

.auth_container {
  padding: 2rem;
  width: 30rem;
}

.auth_inputContainer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.auth_inputContainer > input {
  padding-left: 1rem;
  font-size: 4rem;
  border-radius: 1rem;
}

.auth_message {
  min-height: 7rem;
  font-size: 3rem;
  margin: 0;
  color: white;
}


.home_title {
  font-size: 5rem;
  text-align: center; 
}

.home_photo {
  border-radius: 2rem;
  overflow: hidden;
}
.admin_container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.admin_input {
  font-size: 3rem;
}

.admin_buttonContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.quotes_title {
  text-align: center;
  font-size: 4rem;
}

.quotes_photo {
  margin: 0 auto;
  max-width: 30rem;
  max-height: 30rem;
  overflow: hidden;
  border-radius: 50%;
}

.quotes_text {
  padding: 2rem;
  font-size: 3rem;
  background-color: #f36664;
  color: white;
  font-weight: 700;
  border-radius: 2rem;
}

