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

/* Fondo de la página */
body {
    font-family: 'Press Start 2P', cursive;
    background: url('../ImgPW/fondo.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Header estilo videojuego */
header h1 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #00FF00;
    text-shadow: 3px 3px #000;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 3px 3px #000;
}

a {
    color: #ffffff;
    text-decoration: none;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: auto;
    padding: 0 2rem;
}

.main-header {
    height: 30vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-header h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.main-header h1 span {
    color: #b50d10;
}

.main-header p {
    font-size: 2rem;
}

img {
    width: 100%;
}

.card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    background: #333333;
    margin-bottom: 2rem;
}

.card h3 {
    margin-bottom: 2rem;
}

.card img {
    height: 400px;
}

.card > div {
    padding: 2rem;
}

.card:nth-child(even) img {
    order: 2;
}

@media(max-width:600px) {
    .card {
        display: block;
    }
}