@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

body {
    background: radial-gradient(#795148, #30201d);
    color: #d1a198;
    font-family: Ubuntu;
    margin: 25px;
}

input {
    accent-color: #d1a198;
    color: #d1a198;
    background-color: #543933;
    border-color: #875c54;
    box-shadow: 3px 3px 3px #0000005e;
    transition: 0.25s;
}

textarea {
    color: #d1a198;
    border-color: #d1a198;
    background-color: #60332a;
}

::placeholder {
    color: #f0d0cbb0;
}

a {
    color: #fa0;
    text-decoration: none;
}

a.btn,
button,
input[type=submit] {
    color: #d1a198;
    background-color: #543933;
    border-style: solid;
    border-width: 1px;
    border-color: #875c54;
    box-shadow: 3px 3px 3px #0000005e;
    padding: 0.75rem 1em;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1em;
    transition: 0.25s;
    cursor: pointer;
}

a.btn:hover,
button:hover,
input[type=submit]:hover {
    background-color: #875c54;
}

a.btn:focus,
button:focus,
input[type=submit]:focus {
    color: #4e342f;
    background-color: #b5958e;
    transform: translateY(1px);
}

.main {
    text-align: center;
    align-content: center;
    flex: 1 1 auto;
    display: flex;
    flex-flow: column;
    height: calc(100vh - 50px);
    justify-content: center;
    align-items: center;
}

.main a.btn {
    width: 100px;
}

.main h1 {
    text-shadow: 3px 3px 3px #0000005e;
    font-style: italic;
}

.main>* {
    margin: 2.5px;
}

.main p {
    max-width: 500px;
}

.poopie {
    height: 10em;
    filter: drop-shadow(0 0 0.75rem rgba(172, 78, 24, 0.637));
}
