* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: 'Times New Roman', serif;
    font-size: 18px;
    font-style: italic;
}

body {
    display: grid;
    place-items: center;
    background-image: url("/gfx/ars_background.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #5d1b00;
}

div.container {
    border: 1px solid #5d1b00;
    border-radius: 10px;
    background-color: rgba(164, 142, 116, 0.8);
    margin: 10px 0px 10px 0px;
    padding: 5px 10px;
    min-height: 500px;
}

h1, h2, h3, h4, h5, h6 {
    width: 100%;
    text-decoration: underline;
    text-align: center;
    font-family: 'Brush Script MT', cursive;
    font-weight: bold;
    color: #5d1b00;
}

label {
    font-weight: bold;

}