/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: blue;
  color: White;
  font-family: Arial;
  text-align: center;
  background: url('https://files.catbox.moe/7wrmyp.jpg') no-repeat center center fixed; /* Define a imagem placeholder como fundo, centralizada e fixa */
    background-size: cover; /* Faz com que a imagem cubra toda a tela */
}

header {
  background-color: #008B8B;
  color: white;
  font-family: Arial;
  text-align: center;
  border-radius: 10px;
  margin: 0;
  padding: 30px;
}

.headerleft {
  display: flex;
  align-items: center;
  gap: 15px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

nav ul li {
  position: relative;
}

nav ul a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #FFD700;
}

/* Dropdown */
.dropdowncontent {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #006666;
  border-radius: 5px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  min-width: 140px;
  z-index: 1;
  flex-direction: column;
}

.dropdowncontent li {
  padding: 10px;
  text-align: left;
}

.dropdown:hover .dropdowncontent {
  display: block;
}

#jogosgratis {
  text-align: center;
  color: white;
  font-family: sans-serif;
  margin: 10px;
  padding:30px;
}

#jacksparrow {
  text-align: center;
  color: white;
  font-family: sans-serif;
  margin: 10px;
  padding: 30px;
}

#hydra {
  text-align: center;
  color: white;
  font-family: sans-serif;
  margin: 10px;
  padding: 30px;
  
}

.nova-imagem {
  width: 300px;  
  height: auto; 
}

#hydrar {
  text-align: center;
  color: white;
  font-family: sans-serif;
  
}

#emulacao {
  text-align: center;
  color: white;
  font-family: sans-serif;
  margin: 10px;
  padding:30px;
}
.imagem-responsiva {
  width: 100%;  
  max-width: 500px;  
  height: auto;  
}
.imagem-grande {
  width: 250px;  
  height: auto;  
}
#ps3 {
  text-align: center;
  color: white;
  font-family: sans-serif;
  margin: 10px;
  padding:30px;
}
.imagem-arredondada {
  border-radius: 50%;
  width: 400px;  
  height: 400px;  
}

.container {
  background-color: rgba(128, 128, 174, 0.7); /* fundo escuro translúcido */
  padding: 30px;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 1100px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
