body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    height: 95px;
}

main {
    top: 95px;
    left: 0px;
    width: 100%;
    position: fixed;
    background-color: antiquewhite;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

main img {
    width: 100%;
    opacity: 35%;
    z-index: -1;
}

main #disclaimer {
    position: fixed;
    top: 25%;
    text-align: center;
}

main #links {
    display: flex;
    justify-content: space-around;
}

a {
    color: #333;
}

a:hover {
    animation-duration: 5s;
    transform: translateY(-5px);
    box-shadow: 5px 10px 40px #888888;
}


footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 95px;
    background-color: #333;
    color: #fff;
text-align: center;
}