@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');
@import "button.css";
* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body {
    font-family: Roboto, Arial;
    font-size: 13px;
    margin: 0px;
    background-color: #2E8B57;
    background-image: url(../img/ground.png);
    background-size: auto;
}

body > div > div {
    padding-bottom: 0px;
}

body > div {
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    max-width: 700px;
}

body > div > h1 {
    font-family: Roboto, Arial;
    font-weight: bold;
    font-size: 50px;
    color: #ffffff;
    text-shadow: 2px 0 2px #111111, 
    0 2px 2px #111111, 
    -2px 0 2px #111111, 
    0 -2px 2px #111111;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

body > div > h2 {
    font-family: Roboto, Arial;
    font-weight: bold;
    font-size: 25px;
    color: yellow;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 20px;
}

body > div > p {
    font-family: Roboto, Arial;
    font-weight: normal;
    font-size: 20px;
    color: #ffffff;
    text-align: left;
    line-height: 1.5;
}