* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}
.logo{
    width: 100%;
    max-width: 100px;

}

.overlay {
  background: url('./img/gamelabiscoitos.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

h1 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #7B3F00; /* cor de biscoito */
}

p {
  font-size: 1.1em;
  margin: 10px 0;
}

a {
  color: #006400;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.redirect-msg {
  margin-top: 20px;
  font-style: italic;
  color: #555;
}
