* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    background-image: url("../images/poster.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 40px;
    background-attachment: fixed;
}
header:hover {
    opacity: 0.4;
}
header figure {
    background-color: black;
    text-align: center;
    padding-bottom: 40px;
    padding-top: 20px;
    margin: 0px auto;
}
header img {
    width: 400px;
    background-color: black;
    margin: 20px 20px 20px 20px;
}
header {
    width: 440px;
    margin: 20px auto 20px auto;
}
main, footer, .foreground {
    background-color: #363738;
    width: 500px;
    border: 1px solid #f0a03e;
    padding-left: 20px;
    padding-right: 20px;
    margin: 20px auto 20px auto;
}
.bold {
    font-weight: bold;
}
.button {
    background: #f0a03e;
    border: 1px solid black;
    padding: 20px;
    line-height: 5rem;
}
.button:link, .button:visited {
    color: black;
    font-weight: bold;
    text-decoration: none;
}
.button:hover {
    border: 1px solid white;
}
em {
    font-weight: bold;
}
dt {
    display: inline;
    margin-right: 0px;
}
dd {
    display: inline;
    margin-left: 15px;
}
dl {
    display: block;
}
menu {
    margin: 0px;
    padding: 0px;
    background-color: black;
    height: 100px;
}
menu ul {
    list-style: none;
    margin: 0px auto;
    padding: 0px;
    line-height: 100px;
    margin: 0px auto;
    width: 500px;
}
menu li {
    display: inline-block;
    margin: 0px 20px 0px 2px;
    padding: 0px;
}
menu a {
    height: 100px;
    text-align: center;
    line-height: 100px;
    padding: 0px 15px;
    margin-left: -5px;
}
menu a:link, menu a:visited {
    color: white;
    text-decoration: none;
    display: inline-block;
}
menu a:hover {
    animation: bounce; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1s;
}

a:link, a:visited {
    color: white;
}