html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    animation: bganimate 10s infinite;
}

img {
    width: 100%;
    height: auto;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    img {
        max-width: 80%;
    }
 }

img {
    max-width: 50%;
}

a {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px;
    text-decoration: none;
}
a > img {
    height: 18px;
    width: auto;
}

/*Animation Keyframes*/
@keyframes bganimate {
    0% {background-color: #397467;}
    11% {background-color: #2B4570;}
    22% {background-color: #D66852;}
    33% {background-color: #F9B13C;}
    44% {background-color: #2D2C44;}
    55% {background-color: #7B3E46;}
    66% {background-color: #8F1914;}
    77% {background-color: #43A1A0;}
    88% {background-color: #B28046;}
    100% {background-color: #397467;}
}