body {
    padding: 0%;
    margin: 0%;
    background-color: #36454F;
}

header {
    position: absolute;
    width: 100%;
    max-height: 100px;
    background-repeat: no-repeat;
    color: #000;
    text-shadow: -1px 0 #FFA500, 0 1px #FFA500, 1px 0 #FFA500, 0 -1px #FFA500; /*Help with Accessibility by High Contrastfrom Yvy, my Co-Student at Code Institute*/
    background-image: url(../images/elements/site_banner.webp);
    background-position: right top;
}

main {
}

header h1 {
    text-align: center;
}

.container {
    height: 100vh;
    color: aliceblue;
    margin: 150px 5% 0%;
    position: absolute;
    background: #000;
}

.content-image {/*DEBUGGING*/
    width: 100%;
    height: auto;
}

.text-content {
    padding: 5% 15%;
    text-align: center;
}

.input {
    margin: 0 15%;
    text-align: center;
}

.name-input {
    text-align: center;
    padding-bottom: 5px;
}

button {
    border: none;
    color: #000;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.0em;
    margin-bottom: 10px;
}

.button {
    display: inline-block;
    margin-right: 2.5%;
}

.button:last-child {
    margin-right: 0;
}

button:hover {
    opacity:.75;
}

#button-start {
    background-color: #808080;
}

#button-yes {
    background-color: #04AA6D;
}

#button-no {
    background-color: #dc143c;
}

#button-startnew {
    background-color: #808080;
}


footer {
	padding: 1em;
    width: 100%;
    max-height: 2%;
    position: fixed;
    bottom: 0;
    right: 0;
}

footer p {
    color: #c0c0c0;
    text-align: left;
    padding-left: 10%;
    font-size: auto;
}


@media screen and (min-width: 640px) {
    .container {
      width:50%;
      float: left;
      left: 25%;
      margin: 250px 0 0;
      }

      header {
        min-height: 200px;
    }

}

@media screen and (min-width: 1280px) {
    /* STYLES HERE */
}