body
{
    background: #282828;
    font-family: Arial, Helvetica, sans-serif;
    color: lightgrey;
    margin: 0;
    user-select: none;
}

a:visited
{
    color: cyan;
}

button
{
    position: relative;
    width: 50%;
    height: 50%;
    left: 25%;
    border-radius: 10px;
    border-style: none;

    background-color: rgb(40, 156, 40);
    color: white;
    font-size: xx-large;
}

button:hover
{
    background-color: green;
    cursor: pointer;
}

h1
{
    margin: 5% auto 10% auto;
    grid-area: a;
}

p
{
    position: relative;
    left: 25%;
    width: 50%;
}

#pOldVer
{
    font-size: smaller;
}

#welcomeArea
{
    display: flex;
    flex-direction: column;
    width: 90vw;
    height: 43vw;
    max-height: 90vh;
    max-width: min(182.25vh, 75%);
    margin: 2.5% auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


