/* CSS */
* {margin: 0; padding: 0;}

img {
    height: 80px;
    width: 80px;
}

body {
    background: url(../img/lowPolyWp.jpg) no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    margin: 20px auto;
    text-align: center;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    box-sizing: border-box;
}

button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

div#madLibOutput {
    border: 2px solid black;
    height: 200px;
    width: 900px;
    margin: 8px auto;
    font-size: 14pt;
    text-align: center;
}