*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: url(./favicon_io/favicon-16x16.png), auto;
}

:root{
  --background-color:#121212;
  --primary-color:#a57f4a;
  --secondry-color:#7B3F00;
  --text-color-:#f5f5f5;
}

.header{
  width:100%;
  background-color: #1c1c1c;
  color:var(--primary-color);
  padding:1rem;
  font-family: 'Cinzel', serif;
}

.header .container{
  display: flex;
  justify-content: center;
  align-items: center;

}

.header .character_name{
  line-height: 3rem;
  letter-spacing: 0.5rem;
  font-size: 1.5rem;
  text-shadow: 0.2rem 0.2rem 2rem  #a57f4a
}

.header ul{
  display:flex;
  justify-content:end;
  text-decoration: none;
  list-style: none;
  gap:1rem;
}

.header a{
  color: #a57f4a;
  text-decoration: none;
  cursor: pointer;
}

.header a:hover{
  text-shadow: 0.2rem 0.2rem 2rem  #a57f4a
}

/* HERO SECTION */

.hero {
  position: relative;
  min-height: 100vm;
  background-color: var(--background-color);
  display: flex;
  justify-content:center;
  align-items: center;
  gap:10rem;
  color: var(--primary-color);
}

.hero_content{
  width:25%;
  letter-spacing:0.2rem;
  line-height: 2rem;
  text-align: center;
  font-size: 1.2rem;
  text-shadow: 1rem 1rem 2rem  #a57f4a
}

.hero_content p span{
  font-size: 1.8rem;
}

.hero_content cite{
  font-size: 0.7rem;
}

.hero_image{
  padding: 1.5rem;
  margin:1.5rem;
  border-style:double;
}

/* ABOUTH SECTION */

.abouth_section{
  min-height: 100vm;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:  #1c1c1c;
  color: var(--primary-color);
  padding:5rem;
  font-family: 'Merriweather', serif;
  text-align: center;
  line-height: 2rem;
  
}

.abouth_section span{
  font-size: 1.8rem;
}

.abouth_section h1{
  text-shadow: 0.2rem 0.2rem 2rem  #a57f4a
}

.abouth_section p{
  margin-top: 3rem;
}

.abouth_section .abouth_sherlock{
  width: 70%;
  display:inline-block;
  text-align: center;
  
}

/* LAST SECTION */

.last_section{
  width: 100%;
  min-height: 100vm;
  display: inline-block;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  color: var(--primary-color);
  padding:5rem;
  font-family: 'Merriweather', serif;
  text-align: center;
  line-height: 2rem;
  
}

.last_container{
  margin-bottom: 5rem;
  text-shadow: 0.2rem 0.2rem 2rem  #a57f4a
}

.last_container span{
  font-size: 1.8rem;
}

.list_item ul{
  list-style: none;
  line-height: 4rem;
}

/* FOOTER */

.footer{
  padding:2rem;
  background-color: #1c1c1c;
  color: var(--primary-color);
  text-align: center;

}


