@import url('https://fonts.googleapis.com/css?family=Audiowide');

* {
    margin: 0px;
    padding: 0px;
}


html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: linear-gradient(90deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 500% 500%;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.context {
    width: 100%;
    position: absolute;
    top: 5vh;


}

.context p {
    text-align: center;
    font-size: 25px;
}

.context h2 {
    font-family: "Audiowide", sans-serif;
    text-align: center;
    color: #fff;
    font-size: 50px;
}

.context img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 500;
    height: auto;
}

.navbar {
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    font-family: "Audiowide", sans-serif;
}

.navbar a {
    font-size: 15px;
    color: rgb(219, 219, 219);
    padding: 5px 12px;
    text-decoration: none;
}

