* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face{
    font-family: 'minhafonte';
    src: url('./site/fonts/minhafonte.ttf') format('truetype');
}

body{
    font-family: 'minhafonte', sans-serif;
    height: auto;
    min-height: 100vh;
    width: auto;
    background-color: #1f2021;
    color: white;
    overflow-x: hidden;
    flex-direction: column;
}

.jogar a{
    text-decoration: none;
    color: inherit;
    font:inherit;
    }

nav{
    width: 100%;
    height: 60px;
    padding: 10px 0;
    font-size: 17px;
}

nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 10px;
}

@media only screen and (max-width: 500px){
    nav ul{
        flex-direction: column;
    }
}

nav li{
    display: inline;
    text-align: center;
    flex: 1;
    padding-top: 10px;
}

nav a{
    text-decoration: none;
    color: inherit;
    font: inherit;
}

#logo{
    display: inline;
    margin-bottom: 10px;
}

#parallaxlogo{
    width: 100vw;
    
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.container{
    position: relative;
    width: 100%;
    max-width: 1920px;
}

.jogar{
    font-family: 'minhafonte', sans-serif;
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-60%, -60%);
    -ms-transform: translate(-50%, -50%);
    background-color: #447274;
    color: black;
    font-size: 18px;
    padding: 20px 40px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    align-items: center;
    
}

.jogar:hover{
    background-color: #283023;
    color: white;
}

.manual{
    font-family: 'minhafonte', sans-serif;
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-60%, -60%);
    -ms-transform: translate(-50%, -50%);
    background-color: #447274;
    color: black;
    font-size: 18px;
    padding: 20px 40px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    align-items: center;
}

.containerimg header{
    font-size: 16px;
    text-align: center;
}

.containerimg{
    display: flex;
    float: left;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding: 30px;
    justify-content: center;
}

.imagem1{
    margin: 10px 0;
    float: left;
    border: 1px solid #ccc;
}

div.gallery {
    border: 1px solid #ccc;
}

div.gallery:hover {
    border: 10px solid #27301b;
}

div.gallery img {
    width: 100%;
    height: auto;
    margin: 10px 0;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 50.99999%;
    height: 50.99999%;
    margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
    .responsive {
        width: 49%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 768px) {
    .responsive {
        width: 100%;
    }
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.footer{
    width: 100%;
    height: 70px;
    background-color: #48817A;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.footer ul{
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.footer li{
    display: inline;
}

.copyright{
    display: block;
    font-size: 12px;
}

.button{
    font-family: 'minhafonte', sans-serif;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}
  
.button1{
    background-color: #48817a; 
    color: white; 
    border: 2px solid #48817a;
}
  
.button1:hover{
    background-color: #133030;
    color: white;
}
  
.button2{
    background-color: #48817a; 
    color: white; 
    border: 2px solid #48817a;
}
  
.button2:hover{
    background-color: #133030;
    color: white;
}
  
.button3{
    background-color: #48817a; 
    color: white; 
    border: 2px solid #48817a;
}
  
.button3:hover{
    background-color: #133030;
    color: white;
}

.footer h2{
    font-size: 12px;
    gap: 10px;
    text-align: center;
    margin-bottom: 9px;
}