html {
    height: 100%;
    box-sizing: border-box;
    padding: 50px;
    background: #d3a18b;
}

body {
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#body-left {
    width: 70%;
    display: flex;
    flex-direction: column;
}

#body-right {
    width: 30%;
    background: #f2cfa6;
    border: 1px solid black;
    border-radius: 6px;
    filter: drop-shadow(#000000bb 2px 2px 2px);
    padding: 20px;
}

.patrick-hand-regular {
    font-family: "Patrick Hand", cursive;
    font-weight: 400;
    font-style: normal;
}

::placeholder {
    color: #000000ee;
}

td {
    padding: 0;
}

table td:not(:last-child), th:not(:last-child) {
    padding-right: 5px;
}