
body {
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color:#333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: left;
}
header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}
header h1 img {
    margin-right: 10px;
    width: 100px;
    height: auto;
}
h2{
    text-align: center;
}
h3{
    font-size:0.8rem;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav a {
    
    text-decoration: none;
    color: #fff;
    margin: 0 1rem;
    font-weight: bold;
}

/* Seção de Games */
#games {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center
}
#other_projects {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center
}
#team {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center
}
.thumbnail {
    margin: 1rem;
    position: relative;
}

.thumbnail img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.thumbnail img:hover {
    transform: scale(1.05);
}

/* Seção Quem Somos */
#quem-somos {
    padding: 2rem;
    text-align: center;
}
#contact {
    padding: 2rem;
    text-align: center;
}
#logo{
    width:100px;
    height: auto;
}
.social-buttons a {
    display: inline-block;
    margin: 0 1rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.social-buttons a:hover {
    color: #666;
}
