


body {
    background-image: url("img/AnimalJokes.png");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    padding: 0;
    font-family: 'DynaPuff', comic-sans-serif;
    color: #333;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    background-color: rgba(166, 233, 229, 0.9);
    border: #333 solid 2px;
    border-radius: 10px;
    width: 60%;
}

.hero {
    text-align: center;
    padding: 10px;
}

#jokeForm {
    font-size: 1.2em;
    color: #202020;
    margin-left: 300px;
    margin-right: 300px;
    display: flexbox;
    line-height: 2rem;
    font-style: italic;
    padding: 10px;
}
input, select {
    margin-left: 5px;;
}

.buttonbox {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

button {
    background-color: #f0f0f0;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    
}

button:hover {
    background-color: #d0d0d0;
    border-color: #555; 
    color: #000;
}

.jokeResult {
    font-size: 1.5em;
    color: #333;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}