@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap');

* {
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
}

body {
    background-color: rgb(163, 79, 79);
}

a {
    color: #fff;
}
.header{
    background-image: linear-gradient(#00000057, #0000007c), url('../image/05_La-industria-de-los-videojuegos-ya-es-estrategica-para-Europa-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 40vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.navbar {
    background-color: #333;
    width: 100%;
}

.navbar ul {
    list-style: none;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.Juegos-Content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.catalogo h2{
    text-align: center;
    margin: 2rem;
}

.catalogo img{
    width: 100%;
}

.Juegos{
    flex: 0 0 calc(33.33% - 20px);
    margin: 10px;
    margin-bottom: .5rem;
    box-sizing: border-box;
    text-align: left;
    max-width: 350px;
}
.Juegos{
    background-color: #fff;
}

.Juegos .juegos-descrip{
    padding: .7rem;
    display: flex;
    flex-direction: column;
}

.Juegos span{
    text-align: center;
    margin-top: 1rem;
    font-size: 1.5rem;
    text-align: left;
}

.Juegos a{
    text-align: center;
    background-color: black;
    padding: 1rem;
    margin: 0 auto;
    transition: all .3s;
    border-radius: 5px;

}

.Juegos a:hover{
    scale: 1.1;
    transition: all .3s;
}

#logo{
    
}