body {
    background-color: #fef5e7;
    font-family: serif;
    margin: 10px;
}

h1 {
    font-family: sans-serif;
}

#paper {
    position: absolute;
    height: 600px;
    width: 450px;
    margin: -275px -225px;
    left: 50%;
    top: 50%;
    background-color: #fff;
    color: #000;
    box-shadow: 0px 0px 5px 0px #888;
    padding-bottom: 30px;
}

#paper::before {
    content: "";
    position: absolute;
    height: 100%;
    left: 60px;
    width: 1px;
    background-color: red;
}

#content-area {
    margin-top: 40px;
    width: 100%;
    height: 580px;
    background-image: repeating-linear-gradient(
        white 0px,
        white 24px,
        steelblue 25px
    );
}

h1 {
    margin-bottom: 17px;
}

h1,
ul {
    margin-left: 62px;
    font-style: italic;
}

ul {
    padding-left: 0;
    line-height: 25px;
    margin-bottom: 0;
}

li {
    list-style: none;
    padding-left: 5px;
}

#inputs {
    margin: 0px 0 0 62px;
    line-height: 25px;
}

input {
    border: 1px solid #000;
}

input[type="text"] {
    height: 18px;
}

input[type="button"] {
    height: 22px;
    background-color: lightgray;
}

input[type="button"]:hover {
    box-shadow: 0px 0px 3px grey;
}
