* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background-color: rgba(200, 200, 200, 1);
    background-image: url("../assets/311239.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: unlock;
    padding: 0 1rem;
}

h1,
h2 {
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
    color: rgba(216, 162, 14, 1);
    text-align: center;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 30px;
}

header {
    margin: 1rem 0;
}

.container {
    display: flex;
    justify-content: center;
    max-width: 900px;
    gap: 1rem;
    margin: 0 auto;
}

.chunk {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}

.chunk-wide {
    width: 100%;
}

.piece {
    background-color: #999999ce;
    padding: 1rem;
    border: 1px solid #000;
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(3px);
}

header .piece, footer .piece {
    gap: .5rem;
}

form {
    display: grid;
    grid-template-columns: auto 110px;
    gap: .25rem;
}

label {
    align-self: center;
}

select {
    text-align: center;
    border-radius: 5px;
    border: 1px solid #000;
    height: 1.5rem;
}

input {
    text-align: center;
    border-radius: 5px;
    border: 1px solid #000;
    line-height: 1.4rem;
    appearance: textfield;
}

button {
    padding: .75rem 1rem;
    font-family: unlock;
    font-size: 24px;
    border-radius: 5px;
    border: 1px solid #000;
}

ul {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

li {
    list-style: disc;
    margin-left: 1rem;
}

#mhDpsO,
#ohDpsO,
#ttlDpsO {
    font-weight: 600;
}

footer {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media only screen and (max-width: 768px) {

    body {
        padding: .5rem;
    }

    .container {
        width: 100%;
        flex-direction: column;
    }

    .chunk {
        width: 100%;
    }

}