body {
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #bababa;
}

header {
    background-color: #434343;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 16px;
}

footer {
    position: absolute;
    bottom: 0px;
    background-color: #434343;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

main {
    flex-direction: column;
    width: 50%;
    box-shadow: 4px 8px 4px black;
    background-color: rgb(231, 231, 231);
    padding: 8px;
    margin-top: 5%;
    border-radius: 1em;
    /* min-width: 500px; */
    height: auto;
}

.content input, .content textarea {
    width: 90%;
    /* height: 30px; */
    margin-top: 15px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1em;
    border: none;
    box-shadow: 2px 4px 2px black;
    padding: 8px;
    outline: none;
    flex-shrink: 0;
}

.buttonDIV {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.buttonDIV button {
    width: 95%;
    padding: 8px;
    border: none;
    border-radius: 1em;
    background-color: rgb(97, 97, 97);
    box-shadow: 2px 4px 2px black;
    margin: 8px;
    font-size: 14px;
    color: white;
    font-weight: bold;
}

.buttonDIV button:hover {
    background-color: rgb(157, 157, 157);
    /* box-shadow: 2px 4px 2px rgb(122, 122, 122); */
    color: rgb(56, 56, 56);
}