@import url('https://fonts.googleapis.com/css?family=Fira+Mono:400');


body{

background-color: #020202;  
background-size:100%;
background-repeat: no-repeat;
color: rgb(245, 237, 237);
font-family:'fira-Mono', monospace;
font-size: 15px;
}

* {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.conteudo{
  border-top: 0.4px solid #fff;
}

.conteudo-principal{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-direction: column-reverse;
  margin-top: 25px;
  
}

.conteudo-principal-imagem {
  height: 300px;

}


.conteudo-secundario {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 18px;
  margin-bottom: 5px;
  text-align: center;
  
}

.conteudo-secundario-titulo {
  border-top: 0.4px solid #FFF2E7;
  padding-top: 48px;
  font-family: 'Righteous', cursive;
  font-weight: 400;
  font-size: 24px;
  color: #FFF2EF;
  margin-bottom: 16px;
}

.conteudo-secundario-paragrafo {
  font-family: 'Sarala', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #fffcfa;
   margin-bottom: 16px;
   text-align: center;
}

.conteudo-secundario-paragrafo1{
  align-items: center;
}

a{
  text-decoration: none;
  color: #fff;
}



















ul{
	display: flex;
	width: 100%;
	height: 10vh;
	margin: auto;
  font-family: 'fira-Mono', monospace;


	max-width: 1000px;
	justify-content: space-between;
	text-align: center;
}
li {
	padding: 1rem 2rem 1.15rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #ebebeb;
	min-width: 10px;
	margin: 5px;
  font-family: 'fira-Mono', monospace;
	text-decoration: none;
}

li:hover {
  --h: 1.2em;   /* the height */
  
  line-height: var(--h);
  color: #0000;
  text-shadow: 
    0 var(--_t,var(--h)) #fff,
    0 0 var(--_c,rgb(235, 98, 7));
  background: 
    linear-gradient(#1095c1 0 0) 
    bottom/100% var(--_d, 0) no-repeat;
  transition: 0.3s;
}
.hoverli:hover {
  --_d: 100%;
  --_t: 0;
  --_c: #0000;
}
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: rgb(255, 254, 254);
    text-decoration: none;
}
.btn::after {
    content: "↑";
    font-size: 32px;
    font-weight: bold;
    color: rgb(4, 5, 5);
    transition: margin-top 250ms;
}
.btn:hover::after {
    margin-top:-8px;
}
