body,
html {
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
    margin: 0;
    background-color: whitesmoke;
}

h1 {
    color: rgb(258, 218, 70);
    text-transform: uppercase;
    text-shadow: 1px 2px 1px black;
    font-weight: bold;
    text-align: center;
    font-size: 50px;
}

h3 {
    text-align: center;
    font-weight: normal;
}

form {
    display: flex;
    margin: 5px;
}

input {
    width: 40px;
    height: 30px;
    font-size: 20px;
    text-align: center;
    padding: 2px 2px;
    margin: 1px 1px;
}

button {
    padding: 3px;
    font-size: 16px;
    border-radius: 5px;
    padding: 6px;
    cursor: pointer;
    outline: none;
    border: none;
    box-shadow: 0 3px #999;
}

button:active {
    box-shadow: 2px 2px #666;
    transform: translateY(3px);
    outline-width: 0.5px;
    margin: 0;
}

p {
    visibility: hidden;
    font-size: 25px;
    font-weight: bold;
}

.header,
.footer {
    height: 67px;
    background-color: skyblue;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 10px auto;
}

.footer {
    font-size: 12px;
    width: auto;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 30px;
}

#FGlogo {
    position: absolute;
    top: 0px;
    left: 0px;
}

#myCanvas {
    margin: 5px;
    background-color: skyblue;
    font-family: 'FontAwesome';

}

#buildButton {
    background-color: green;
    color: white;
    font-size: 20px;
    margin: 1px 1px;
}

#buildButton:hover {
    background-color: rgb(11, 99, 11);
    font-weight: bold;
    margin: 2px;
}

#demolish {
    margin: 5px 30px;
    align-self: flex-end;
    font-size: 14px;
    padding: 2px;
}

#demolish:hover {
    font-weight: bold;
}

#sunsetButton {
    background-color: rgb(258, 218, 70);
    font-size: 20px;
}

#sunsetButton:hover {
    background-color: rgb(255, 187, 0);
    font-weight: bold;
}