*{
    margin: 15;
    padding: 15;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(Small_Troll.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.game-title2 {
    background-color: darkslategray;
    padding: 10px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.main-content2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

nav{
    padding: 20px;
    display: flex;
    flex-wrap: space-between;
    justify-content: center;
}

nav a{
    background-color: gold;
    padding: 25px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

main{
    width: 40%;
    margin: auto;
}

footer{
    background-color: darkslategray;
    padding: 20px;
    display: flex;
    flex-wrap: space-between;
    justify-content: left;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}