/*Madlib banner with white background and centered*/
.banner{
    background-color: white;
    background-image: url("madlibbanner.jpeg");
    background-size: contain;
    background-position: center;
    position: static;
    background-repeat: no-repeat;
    width: 100%;
    height: 150px;
    margin: 0 auto;
}
/*Directions centerd with white background and spaced well*/
.directions{
    background-color: white;
    position: static;
    height: 40px;
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 1px;
    padding-bottom: 5px;
    text-align: center;
    margin: 0 auto;
    margin-top: 3px;
    margin-bottom: 5px;
}
/*Light blue background, centering text, and sets fonts*/
body{
    background-color: lightblue;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif, serif;
}
/*White box background for inputs*/
.inputs{
    background-color: white;
    width: fit-content;
    padding: 10px;
    display: inline-block;
}
/*White box backgorund for resulting text*/
p{
    background-color: white;
    width: fit-content;
    text-align: center;
    padding: 5px;
    display: inline-block;
}