@import url('https://fonts.googleapis.com/css?family=Exo+2&display=swap');
@import url('https://fonts.googleapis.com/css?family=Staatliches&display=swap');
html{
    display: flex;
    justify-content: center;
    background-image: radial-gradient(circle, #202832, #1e1f27, #19161b, #110d0f, #000000); 
    background-size: 500% 500%;
    position: relative;
}
@keyframes change-color {
    0%{
      background-position: 0 50%;
    }
    50%{
      background-position: 100% 50%;
    }
    100%{
      background-position: 0 50%;
    }
  }
h1 {
    color: rgb(143, 178, 238);
    text-shadow:
    -1px -1px 0 rgb(7, 111, 237),
    1px -1px 0 rgb(7, 111, 237),
    -1px 1px 0 rgb(7, 111, 237),
    1px 1px 0 rgb(7, 111, 237);
}
input {
    border: none;
    border-bottom: 6px solid rgb(128, 126, 126);
    height: 8vh;
    width: 80vh;
    font-size: 5vh;
    font-family: 'Exo 2', sans-serif;
    background-color: rgb(51, 51, 191);
    color: rgb(143, 178, 238);
    padding-left: 15px;
    text-shadow:
    -1px -1px 0 rgb(50, 127, 222),
    1px -1px 0 rgb(50, 127, 222),
    -1px 1px 0 rgb(50, 127, 222),
    1px 1px 0 rgb(50, 127, 222);
}
button{
    height: 8vh;
    width: 11vh;
    font-size: 30px;
    background-color: rgb(51, 51, 191);
    color: rgb(143, 178, 238);
    font-family: 'Staatliches', cursive;
    text-shadow: 
    -1px -1px 0 rgb(50, 127, 222),
    1px -1px 0 rgb(50, 127, 222),
    -1px 1px 0 rgb(50, 127, 222),
    1px 1px 0 rgb(50, 127, 222);
}
.background {
    margin-top: 10%; 
    border: 5px blue inset;
    border-radius: 50%;
    width: 50vh;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to right, #370d5e, #55163e, #2d30c7);
    background-size: 500% 500%;
    position: relative;
    animation: change 12s ease-in infinite;
}
@keyframes change {
    0%{
      background-position: 0 50%;
    }
    50%{
      background-position: 100% 50%;
    }
    100%{
      background-position: 0 50%;
    }
  }

.answers{
    display: flex;
    justify-content: center;
    margin: 10vh;
    font-family: 'Exo 2', sans-serif;
    font-size: 5vh;
    color: rgb(143, 178, 238);
    text-shadow:
    -1px -1px 0 rgb(50, 127, 222),
    1px -1px 0 rgb(50, 127, 222),
    -1px 1px 0 rgb(50, 127, 222),
    1px 1px 0 rgb(50, 127, 222);
}
footer{
    display: flex;
    margin-top: 10%;
    justify-content: center;
    color: rgb(143, 178, 238);
    font-size: 27px;
}
