body {
    background-color: darkgray;
    font-family: Arial, Helvetica, sans-serif;
}

.linksContainer {
    margin-top: 200px;
}

#links {
    margin: auto;
    width: 400px;

}

@media (max-width: 600px) {
    #links a {
        width: 200px;
    }
}

@media (min-width: 600px) {
    #links a {
        width: 350px;
    }
}

#links a {
    height: 40px;
    text-decoration: none;
    color: whitesmoke;
    font-size: 15pt;
    line-height: 2;
    display: inline-block;
    vertical-align: middle;
    background-color: rgb(15, 15, 15);
    margin-top: 10px;
    text-align: center;
    border-radius: 8px;
}

#links a:hover {
    background-color: rgba(66, 66, 66, 0.993);
    cursor: pointer;
    user-select: none;
}

footer {
    /*position: absolute;*/
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 50px;
    margin: auto;
    float: right;
    text-align: right;
}