@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow: hidden;
    background-color: #222;
}

    header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    background-color: #333;
    padding: 0 2vh;
    width: 100%;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
    margin-top: 0.5vh;
}

header .logo {
    height: 8vh;
}

header nav ul {
    display: flex;
    list-style-type: none;
}

header nav ul li {
    margin-left: 2vh;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 3vh;
    margin-right: 2vh;
    margin-left: 2vh;
    margin-top: 2vh;
}

header nav ul li a:hover {
    color: red;
    transition: color 0.3s ease-in-out; /* Suaviza a transição */
}

h1 {
    margin-bottom: 2vh;
    font-size: 4vh;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.01vh;
    margin-top: 1vh;
    text-align: center;
}

#game {
    width: 64%;
    height: 65vh !important;
    margin-top: 2vh;
    margin-left: 18%;
    margin-right: 18%;
    border: 0.5vh solid #9999994a;
}
#game2 {
    width: 100vw;
    height: 100vh !important;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    border: 0.5vh solid #9999994a;
}
#top {
    width: 100%;
  margin-top:-0.5vh;
}

@media (max-width: 768px) { 
    
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 6vh;
        background-color: #333;
        padding: 0 1vh;
        width: 100%;
    }
    
    header nav ul li a {
        color: white;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.6vh;
        margin-right: 0vh;
        margin-left: 0vh;
        margin-top: 2vh;
    }

     header .logo {
    height: 4vh;   
   }
      button {
        margin-left: 0vh !important;
        padding: 0.4vh 0.7vh !important;
        border-radius: 0.5vh !important;
        font-size: 1.6vh !important;
    }
    h1 {
        margin-bottom: 2vh;
        font-size: 2.5vh;
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        letter-spacing: 0.01vh;
        text-align: center;
        margin-top: 2vh;
    }
#game {
    width: 96%;
    height: 75vh !important;
    margin-top: 0vh;
    margin-left: 2%;
    margin-right: 2%;
    border: 0.5vh solid #9999994a;
}
    #game2 {
        width: 100vw;
        height: 88vh !important;
        margin-top: 0vh;
        margin-left: 0%;
        margin-right: 0%;
        border: 0.5vh solid #9999994a;
    }
    
}
