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


body
{
    background-color: #333;
    color: white;
    font: 200 14px Poppins, sans-serif;

    width: 100%;
    height: 100%;
    background: radial-gradient(circle farthest-side at 0% 50%,
            #282828 23.5%,
            rgba(255, 170, 0, 0) 0) 21px 30px,
        radial-gradient(circle farthest-side at 0% 50%,
            #2c3539 24%,
            rgba(240, 166, 17, 0) 0) 19px 30px,
        linear-gradient(#282828 14%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 85%,
            #282828 0) 0 0,
        linear-gradient(150deg,
            #282828 24%,
            #2c3539 0,
            #2c3539 26%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 74%,
            #2c3539 0,
            #2c3539 76%,
            #282828 0) 0 0,
        linear-gradient(30deg,
            #282828 24%,
            #2c3539 0,
            #2c3539 26%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 74%,
            #2c3539 0,
            #2c3539 76%,
            #282828 0) 0 0,
        linear-gradient(90deg, #2c3539 2%, #282828 0, #282828 98%, #2c3539 0%) 0 0 #282828;
    background-size: 40px 60px;
}

footer
{
    border-top: 2px solid #00c3ff;
    color: #ccc;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #222;
}

/* NAV */

nav
{
    background-color: #222;
    border-bottom: 1px solid #5B42F3;
    text-align: center;
    width: 100%;
    position: fixed;
}



[data-es]
{
    display: none;
}



#Language-button a
{
    background-color: #233f47;
    color: #ffffff;
    border: 1px solid #00c3ff;
}

/* Panel secciones */
#PanelSections
{
    display: grid;
    grid-template-columns: 2fr 1fr;
    background-color: #222;
    color: white;
    border: 1px solid #B197FC;
    /* border: 1px solid #00c3ff; */
}

@media (max-width: 1320px)
{
    #PanelSections
    {
        grid-template-columns: 1fr;
    }
}

/* Imagem */
.Img-game
{
    width: 100%;
    height: auto;
    max-width: 1000px;
    max-height: 550px;
    /* border: 2px solid #222; */
    border-radius: 15px;
    box-shadow: #333;
}


/* Descripcion */

h1
{
    font-family: "Grenze", serif;
    font-weight: 200;
}

#Title-nav
{
    font-family: "Grenze", serif;
    font-weight: 200;
    font-size: 28px;
}

h3
{
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
}


p
{
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 200;
}

#CodeButton
{
    background-color: #B197FC;
    color: #222;
    border: 1px solid #00c3ff;
    text-align: center;
    padding: 10px;
    position: absolute;
    margin-top: 20px;
    bottom: 10px;
}



/* From Uiverse.io by adamgiebl */
.BackgroundCard
{

    border-radius: 20px;
    padding: 5px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
}

#PanelSections
{
    /* background: rgb(5, 6, 45); */
    border-radius: 17px;
    border: solid 1px #AF40FF;
}


/* From Uiverse.io by yaasiinaxmed */
.BtnPag
{
    --color: #5B42F3;
    font-family: inherit;
    display: inline-block;
    min-width: 6em;
    height: 2.6em;
    line-height: 2.5em;
    overflow: hidden;
    cursor: pointer;
    margin: 20px;
    font-size: 17px;
    z-index: 1;
    color: var(--color);
    border: 2px solid var(--color);
    border-radius: 6px;
    position: relative;
}

.BtnPag::before
{
    position: absolute;
    content: "";
    background: var(--color);
    width: 150px;
    height: 200px;
    z-index: -1;
    border-radius: 50%;
}

.BtnPag:hover
{
    color: white;
}

.BtnPag:before
{
    top: 100%;
    left: 100%;
    transition: 0.3s all;
}

.BtnPag:hover::before
{
    top: -30px;
    left: -30px;
}