html, body {
    height: 100%;
    margin: 0px;
}

body {
    background-image: url("https://mayyhemm-assets.s3.amazonaws.com/mayyhemm/forest_bg.jpg");
    background-attachment: fixed;
    background-size: auto 100%;
    background-repeat: repeat-x;
    font-family: "Consolas", "Lucida Console", "Courier New", monospace;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background-color: rgba(0,0,0,0.9);
    width: auto;
    text-align: center;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5% 10%;
    background-color: rgba(0,0,0,0.7);
    color:lightgray;
    text-align: center;
}

#queen_img {
    flex: 1;
}

#bottom_text {
    flex: 0 1em;
    font-size: 1em;
    text-align:center;
    color: pink;
    transform: scale(-1,-1);
}

.navbutton {
    display: inline-flex;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    vertical-align: middle;
    font-size: xx-large;
    color: white;
    height: 1em;
}

.navbutton a {
    all:inherit;
}

.navbutton::before {
    content: " | ";
}

img {
    height:100%;
    width:auto;
    object-fit: scale-down;
}

#tipbutton {
    display: inline-flex;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    border: outset;
    padding: 1em;
    height: 1em;
    background-color: grey;
    font-size: 4em;
    margin: 30%;
}