@charset "UTF-8";
html, body{
    height: 100%
}
#container {
    box-sizing: border-box;
    width: 1000px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    border: solid 2px black;
    border-radius: 3px;
    padding: 10px;
    background-color: antiquewhite;
    background-image: url(../images/background.jpeg);
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image*/
    background-size:cover; /* Resize the background image to cover the entire container */
    line-height: 2em;
    font-size: large;
    font-family: Helvetica, -apple-system, BlinkMacSystemFont, sans-serif;
    height: 1000px;
    overflow-y: auto;
}