* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

html,
body {
    margin: 0;
    position: relative;
    font-size: 14px;
    font-family: "Times New Roman", serif;
}

.image-container {
    width: 100%;
    transition: 0.3s 0.3s opacity;
    overflow: hidden;
}

.image-container img {
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: contain;
}

header {
    position: fixed;
    z-index: 1;
    width: 100%;
    background-color: white;
    border-top: 25px solid #dfd2bf;
    padding: 10px 10px 20px;
    will-change: transform;
}

h1 {
    margin: 10px 0px;
}

hr {
    border-style: dashed;
    border-width: 1px;
    border-color: black;
    border-bottom: 0;
    margin: 0;
}