html {
    width: 100vw;
    height: 100vh;

    display: block;

    padding: 0px;
    margin: 0px;
}

body {
    width: 100%;
    height: 100%;

    padding: 0px;
    margin: 0px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background-size:cover;
    background-image: url('/resources/background.jpg')
}

a {
    text-decoration: none;
    font-family: sans-serif;
    color: #002b00;

    background-color: #00b100;
    padding: 15px;

    border: 5px solid #006b00;
    border-radius: 12px;

    box-shadow: 0px 10px #004000, 0px 10px 24px #000000;

    font-size: 24px;

    transition: 125ms ease-in-out;
}

a:hover {
    transform: translateY(2.5px);
    box-shadow: 0px 7.5px #004000, 0px 7.5px 24px #000000;
}

a:active {
    transform: translateY(10px);
    box-shadow: 0px 0px #004000, 0px 0px 24px #000000;
}