html{
    background-color: #0f1518;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100%;
    min-width: 100%;
    margin: 0;
    padding: 0;
    color: white;
}

h1{
    text-align: center;
    color: #fff;
    font-family: "Yellowtail", sans-serif;
    font-weight: 100;
    font-size: 3.7rem;
    animation: pulsate 0.0000001s ease-in-out infinite alternate;    
}

#container{
    display: grid;
    justify-content: center;
    margin-top: 130px;
}

#round{
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
}

#buttons{
    display: flex;
    justify-content: center;
}

.image{
    width: 200px;
    height: 200px;
}

.scores{
    display: flex;
    justify-content: space-around;
}

p{
    font-family: 'Poppins';
}

#page-end{
    display: flex;
    justify-content: space-around;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    border-top: 2px solid rgb(255, 255, 255, 0.3);
}

#page-end p{
    margin-left: 10px;
}

a{
    text-decoration: none;
    color: white;
}

.selections:hover{
    animation: MoveUpDown 1s linear infinite;
    left: 0;
    bottom: 0;
}

@keyframes pulsate {
100% {
    text-shadow:
    0 0 4px #fff,
    0 0 11px #fff,
    0 0 19px #fff,
    0 0 40px #5271ff,
    0 0 80px #5271ff,
    0 0 90px #5271ff,
    0 0 100px #5271ff,
    0 0 150px #5271ff;    
}
    
0% {  
    text-shadow:
    0 0 4px #fff,
    0 0 10px #fff,
    0 0 18px #fff,
    0 0 38px #5271ff,
    0 0 73px #5271ff,
    0 0 80px #5271ff,
    0 0 94px #5271ff,
    0 0 140px #5271ff;
  }
}

@keyframes MoveUpDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-30px);
    }
}

@media screen and (max-width: 750px){
    #container{
        margin-top: 10px;
    }
    .image{
        width: 100px;
        height: 100px;
    }
    #page-end{
        font-size: 12px;
    }
}