html {
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color:bisque;
}

#main {
    padding-top: 200px;

}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: bisque;
    padding: 10px;
}

#copyright {
    margin: 0;
}

#get-word-btn {
    background-color: white;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 5px, solid, white;
    border-radius: 12px;
    border: none;
}

#get-word-btn:hover {
    background-color:aliceblue;
}

#part-of-speech-select {
    width: 200px;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 12px;
    border: 2px, solid, black;
    cursor: pointer;
    border: none;
    text-align: center;
}

#part-of-speech-select:hover {
    background-color:aliceblue;
}

#word-output {
    font-size: 24px;
    font-weight: bold;
    margin-top: 40px;
}
