
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    color: white;
    background: url(jogo.jpg) no-repeat center center/cover;
  }
  
  .logo {
    width: 160px;
    height: auto;
}

.top-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    margin-top: -15vh;
  }
.top-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
.top-nav ul a {
    text-decoration: none;
    color: white;
  }
  

  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: left;
    padding: 40px;
  }
  
  .overlay-text {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    max-width: 700px;
    border-radius: 10px;
    font-size: 1.1rem;
    line-height: 1.8rem;
  }
  
  .overlay-text strong {
    color: #00ffff;
  }
  
  ul {
    margin: 10px 0;
    list-style: none;
  }
  
  ul li {
    margin-bottom: 8px;
  }
  