*{
  margin: 0;
  padding: 0;
  font-family: Arial;
}

html, body {
  width: 100vw;
}

main{
  width: 100%;
  display: flex;
  justify-content: center;
}

div#header{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

div.logo img{
  width: 15%;
  position: relative;
}

div.titulo{
  display: flex;
  position: absolute;
  color: #243affd2;
}

.menu{
  width: 100%;
  align-self: center;
  justify-self: center;
  border-bottom: 1px solid #00000020;
}

.menu ul{
  display: flex;
  justify-content: center;
}

.menu ul li{
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00000015;
}

.menu ul li:hover{
  background-color: #5457ff;
}

.menu ul li a{
  text-decoration: none;
  color: rgb(0, 0, 0);
  margin: 1px 1rem 1px 1rem;
}

.footer{
  width: 100%;
  height: 5%;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

#cadastro{
  margin-top: 10%;
  display: flex;
  flex-direction: column;
  width: 500px;
  
}

#cadastro h2{
  font-size: 14px;
  text-align: center;
}

#cadastro form{
  display: flex;
  flex-direction: column;
  align-content: space-between;
}

#cadastro form input{
  height: 20px;
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

#cadastro form button{
  margin-top: 5px;
  width: 100px;
  height: 30px;
  align-self: center;
}

div#mensagem{
  padding: 1rem;
  background-color: rgb(197, 255, 214);
  color: #004d04;
  position: fixed;
  top: 2rem;
  right: 1rem;
  z-index: 100;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 1px 1px 5px black;
}

span#close {
  font-size: 1.5rem;
  cursor: pointer;
  transition: .3s;
  margin-left: .5rem;
}

span#close:hover{
  color: rgb(255, 0, 0);
  transform: scale(1.5);
}

#gerar{
  margin-top: 10%;
}

#content{
  max-width: 950px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.ass_email a:hover{
  color: aqua;
}

.section_clip{
  display: flex;
  justify-content: center;
  margin-top: 10%;
}

.btn_copy{
  margin-left: 2rem;
}

.btn{
  height: 50px;
  padding: 10px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  color: rgb(255, 255, 255);
  background-color: rgb(51, 71, 91);
  font-family: "Lexend Deca", sans-serif;

}

.btn:hover{
  background-color: rgb(51, 71, 91, 0.9);;
}