html {
    padding: 20px;
    border: 10px solid #1C1C1C;
    background: linear-gradient(180deg, #550000, #111);
}

* {
    font-family: monospace;
}

body {
    font-size: 20px;
    color: white;
}

.botao-voltar {
    display: inline-block;
    margin: 20px;
    padding: 12px 20px;
    background: #8B0000;
    color: white;
    text-decoration: none;
    border: 2px solid red;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    transition: .3s;
}

.botao-voltar:hover {
    background: red;
    color: black;
    transform: scale(1.05);
    box-shadow: 0 0 20px red;
}

.container-slayer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 30px;
    flex-wrap: wrap;
}

.fogo {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.fogo::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 15px;
    background: radial-gradient(circle,
        yellow 5%,
        orange 35%,
        red 70%,
        transparent 100%);
    filter: blur(20px);
    animation: fogo 1.5s infinite alternate;
    z-index: -1;
}

.doom-img {
    display: block;
    position: relative;
    z-index: 2;
    max-width: 300px;
    height: auto;
    border: 4px solid red;
    border-radius: 8px;
    box-shadow: 0 0 20px red;
}


.texto {
    max-width: 500px;
}

.texto h2 {
    color: red;
    font-size: 38px;
    text-shadow: 0 0 10px red;
}

.frase {
    color: #ffcc00;
    font-size: 24px;
    font-style: italic;
}

.texto p {
    font-size: 22px;
    line-height: 1.7;
}

.titulo-inicio {
    color: red;
    font-size: 36px;
    text-decoration: underline #363636;
}

.titulo-historia {
    color: #ffcc00;
    font-size: 30px;
    text-decoration: underline #363636;
}

.titulo-armas {
    color: #ff4500;
    font-size: 30px;
    text-decoration: underline #363636;
}

.titulo-curiosidades {
    color: #ffd700;
    font-size: 30px;
    text-decoration: underline #363636;
}

.lista-jogos {
    list-style: none;
    padding: 0;
    max-width: 600px;
}

.lista-jogos li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    color: white;
    padding: 12px 20px;
    margin-bottom: 10px;
    border: 2px solid #4a0000;
    border-radius: 6px;
    transition: .3s;
}

.lista-jogos li:hover {
    background: #330000;
    border-color: red;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 0 15px red;
}

.lista-jogos span {
    font-weight: bold;
}

@keyframes fogo {

    from {
        transform: scale(1);
        opacity: .7;
    }

    to {
        transform: scale(1.15);
        opacity: 1;
    }

}

body p {
    line-height: 1.8;
}