/* nothing here is final */

html {
    margin: 0;
    padding: 0;
}

#last {
    background-color: rgb(133, 127, 127, 0.5);
    width: 20px;
}

#footer {
    display: none;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}

#footer button {
    margin-right: 10px;
    background-color: rgb(190, 30, 30);
    /* Green */
    border-radius: 12%;
    border: none;
    color: white;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

#footer button:hover {
    background-color: rgb(155, 10, 10);
    cursor: pointer;
}

#main {
    display: none;
}

body {
    background: #272822;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

#header {
    padding: 10px 15px;
    margin: 0;
    background: brown;
}

#title {
    font-weight: bold;
    font-size: 30px;
}

#start-screen {
    display: block;
}

#end-screen {
    display: none;
    /* will be overwritten */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-style: Normal;
}

#progress {
    display: none;
}

#game-display {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#game-window {
    display: none;
    justify-content: center;
    height: 66vh;
    text-align: center;
    padding: 20px;
    padding-left: 0px;
}

html {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}