/* Configurações Gerais */

body {
background-color: lightblue;
height: 125vh;  
margin-top: 80px;  
padding: 30px;  
background-size: cover;  
font-family: "Georgia", Georgia, serif;
}

h1 {
  color: navy;
  margin-left: 20px;
}

img {
z-index: 1;
}

/* Botões do Centro */

div button{
background-color: #33405C;
border: bold;
cursor: pointer;
color: #7E9EE1; 
text-decoration: none;
text-decoration-style: Solid;
font-family: "Georgia", Georgia, serif;
padding: 30px 60px;
font-size: 22px;
transition-duration: 0.4s;
border-radius: 10px;
}

div button:hover{
  background-color: #69CAEA;
  color: #33405C;
}

/* Barra Superior */

header {  
background-color: #33405C;  
position: fixed;  
left: 0;  
right: 0;  
top: 0;  
height: 45px;  
display: flex;  
align-items: center;  
text-align: center;
box-shadow: 0 0 10px 0 black;  
z-index: 999;
}  
header * {  
display: inline;  
}  
header li {  
margin: 1px;  
}  
header li button {  
background-color: Transparent;
border: none;
cursor: pointer;
color: #7E9EE1; 
text-decoration: none;
text-decoration-style: Solid;
font-family: "Georgia", Georgia, serif;
padding: 13px 16px;
font-size: 18px;
transition-duration: 0.4s;
}  

header li button:hover {
  background-color: #7E9EE1;
  color: #182D5C;
}


/* Classes */

.integrantes {
	text-align: left;
	font-size: 22px;
	display: inline-block;  
	vertical-align: top;
	width: 40%;
}

.foto {
	height: 500px;
	width: 380px;
	align-items: left; 
	border: 2px solid;
	border-radius: 25px;
}

.centro {
	text-align: center;
	background-color: #7E9EE1;
	font-size: 18px;
	margin: auto;
	width: 80%;
	border: 1px solid black;
	padding: 10px;
	padding-bottom: 20px;
	color: #33405C
}

.centrotipos {
	text-align: center;
	background-color: #7E9EE1;
	font-size: 20px;
	margin: auto;
	width: 80%;
	border: 1px solid black;
	padding: 10px;
	padding-bottom: 100px;
	color: #33405C
}

.hoverimg {
  position: relative;
}

.hoverimg:before {
  content: attr(data-hover);
  visibility: hidden;
  opacity: 0;
  width: 500px;
  background-color: #33405C;
  color: #7E9EE1;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  z-index: 998;
  left: 0;
  top: 50%;
}

.hoverimg:hover:before {
  opacity: 1;
  visibility: visible;
}