body {
    background-image: url(indexbg.jpg);
    background-size: 50%;
    font-family: 'terminal';
    color: rgb(255, 247, 237);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

img {
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    width: 450px;
    float: left;
    margin-right: 20px;
}

@font-face {
    font-family: 'terminal';
    src: url(museumofnaturalhistory/stuff/fonts/terminal.ttf) format('truetype');
}

@font-face {
    font-family: 'matina';
    src: url(museumofnaturalhistory/stuff/fonts/matina.otf) format('opentype');
}

h1 {
    font-family: 'matina';
    margin: 0;
    color: rgb(255, 247, 237);
    font-size: 50px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 20px;
    margin: 0;
    font-style: oblique;
}

.copyright {
    font-family: 'terminal';
    font-size: 14px;
    font-weight: normal;
    font-style: oblique;
    color: rgba(255, 247, 237, 0.627);
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%);
}

.main {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    width: max-content;
}

.maindiv {
    display: flex;
    position: relative;
}

p {
    font-style: italic;
    line-height: 1.3;
}

a {
    display: block;
    padding: 5px;
    background-color: rgb(98, 110, 69);
    font-family: 'terminal';
    font-size: 14px;
    font-weight: bold;
    color: rgb(255, 247, 237);
    border-radius: 3px;
    border: 2px outset rgb(142, 151, 119);
    text-align: center;
    letter-spacing: 1px;
    text-decoration: none;
    box-sizing: border-box;
    width: fit-content;
    margin-top: 10px;
}

a:hover {
    background-color: rgb(75, 82, 58);
    color: rgb(207, 200, 189);
    border: 2px inset rgb(142, 151, 119);
}