html {/*have HTML match the view port*/
	position: fixed;
	height: 100vh;
	width: 100vw;
	/* overflow: scroll; */
	background-image: url(background.png);
}

body {
    min-height: 100%;
    background-color: #eee;
    padding: 20px;
    max-width: 728px;
    min-width: 728px;
    margin: 0 auto;
    -webkit-box-shadow: 0px 0px 100px 100px rgba(249,92,57,0.9);
    -moz-box-shadow: 0px 0px 100px 100px rgba(249,92,57,0.9);
    box-shadow: 0px 0px 100px 100px rgba(249,92,57,0.9);
}

html, button, input {
	font-family: 'roboto', sans-serif;
	color: #263F73;
}

h2 {
    text-align: center;
    font-size: 40px;
}

input {
    display: inline-block;
    width: 150px;
    border-style: none;
    border-bottom: 2px solid #263f73;
    margin-bottom: 10px;
    padding-left: 10px;
    /* margin-left: auto; */
    /* margin-right: auto; */
    font-size: 30px;
}

p {
    color: #4471ce;
    font-size: 20px;
}

button {
    font-size: 22px;
}

/*Element Specific Styles*/

#message {
    display: block;
    width: 80%;
    border-style: none;
    border-bottom: 2px solid #263f73;
    margin-bottom: 10px;
    padding-left: 10px;
    margin-left: auto;
    margin-right: auto;
}

#duration {
    margin-left: 20px;
    margin-right: 20px;
}

.clickme {
    width: 150px;
}

/*Duplicate to increase selectivity*/
.undo.undo {
    color: rgb(249, 92, 57);
    cursor: pointer;
    transition: color .4s;
}

.undo.undo:hover {
    color: rgb(249, 223, 217);
}

.undo.undo:active {
    color: rgb(50, 50, 50);
    transition: color .05s;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}