* {
    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: #382323;
}

div.container {
    border: 1px solid #382323;
    border-radius: 10px;
    background-color: rgba(200, 200, 200, 0.7);
    margin: 10px 0px 10px 0px;
    padding: 5px 10px;
    min-height: 500px;
}

h1 {
    width: 100%;
    text-decoration: underline;
    text-align: center;
    font-family: 'Brush Script MT', cursive;
    font-weight: bold;
    color: #382323;
}