:root
{
    --TextColor: #E6D8B8
}

body
{
    color: var(--TextColor);
    font-size: 155%;
    text-align: left;
    
    background-image: url(repeated.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    background-color: rgb(20, 20, 20);
    background-blend-mode: darken;
}

.BasicHUD
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.Titulo
{
    font-family: 'Times New Roman', Times, serif;

    color: #07ac2d;
    text-align: center;
    font-size: 250%;

    background-image: url(island.webp);
    background-size: cover;

    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
}

.ButtonGp
{
    display: flex;
}

.ButtonGp button
{
    float: left;
    flex: 1;
    padding: 15px 0px;
    font-style: italic;

    border: 2px solid rgb(109, 109, 109);

    background-image: url(island.webp);
    background-size: cover;

    background-color: #0f1815dc;
    background-blend-mode: darken;
}

.StartSpace
{
    font-size: 120px;
    color: rgba(17, 17, 17, 0);
}

.NeoIMG
{
    display: block;
    margin: auto;
    width: 300px;
    margin-block-start: 150px;
}

.creditos
{
    font-size: 200%;
    text-align: center;

    margin-bottom: 70px;
}

button
{
    color: var(--TextColor);
    background-color: rgb(37, 37, 39);
    font-size: 100%;

    border-color: aliceblue;
    text-align: center;
    cursor: pointer;
}

input
{
    color: var(--TextColor);
    background-color: rgb(37, 37, 39);
    font-size: 80%;
    border: 0px;

    width: 3vw;
    text-align: left;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

ul
{
    list-style-type:none;
}

@media only screen and (max-width:700px) {

    .Titulo
    {
        font-size: 50px;
    }

    input
    {
        width: 50px;
    }

    .ButtonGp
    {
        top: 55px;
    }

    .ButtonGp button
    {
        font-size: 12px;
        width: 25%;
    }
}