@keyframes open {
    from {
        opacity: 0.0;
    }
    to {
        opacity: 1.0;
    }
}

* {
    animation: open 1s ease-in 0.5s 1 normal both running;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #ffffff;
}

body {
    overflow: hidden;
}

main img, nav, hr, footer {
    position: absolute;
}

main img {
    width: 20%;
    min-width: 200px;
    max-width: 300px;
    top: 20%;
    right: 60%;
    margin-bottom: -7%;
}

hr {
    width: 58%;
    top: 45%;
    left: 42%;
    color: #00a2e8;
    margin-top: 0;
}

nav {
    height: 45%;
    width: 59%;
    bottom: 55%;
    left: 41%;
}

ul {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

li {
    overflow: hidden;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    text-align: center;
}

a {
    height: 100%;
    width: 100%;
    text-transform: uppercase;
    text-decoration: none;
    color: dimgrey;
}

p {
    font-family: 'Ubuntu', 'arial', 'sans serif';
}

footer {
    bottom: 0;
    right: 0;
    margin-right: 5px;
    padding-right: 5px;
    text-align: right;
}

footer a img {
    height: 15px;
    padding-left: 10px;
    padding-bottom: 3px;
}

footer p {
    margin: 0;
    font-size: 0.8em;
    color: darkgray;
    font-family: 'arial', 'Ubuntu', 'sans serif';
    padding-bottom: 4px;
}