body{
    background-image: url("predictions.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    flex: 1;
    margin: 0;
    flex-wrap: wrap;
}

h1{
    color:white;
    text-align: center;
    font-size: 100px;
    font-family: 'Sofia Sans Condensed', sans-serif;
}

#container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    flex-wrap: wrap;
}

#btn {
    padding: 60px 60px;
    border: none;
    font-size: 17px;
    color: #fff;
    border-radius: 100%;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: 0.5s;
    transition-property: box-shadow;
  }
  
  #btn {
    background: rgb(217, 227, 235);
    box-shadow: 0 0 25px rgb(208, 212, 215);
  }
  
  #btn:hover {
    box-shadow: 0 0 5px rgb(181, 212, 237),
                0 0 25px rgb(176, 203, 224),
                0 0 50px rgb(233, 238, 243),
                0 0 100px rgb(168, 175, 182);
  }

#par{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-size: 20px;
    background-color: dodgerblue;
    margin-top: 100px;
    margin-left: 350px;
    padding: 20px;
    border-radius: 50px;
    width: 50%;
    color: #fff;
}

@media all and (max-width: 500px){
    h1{
        font-size: 40px;
    }
    #btn{
        padding: 30px 30px;
    }
    #par{
     width: 30%;
     margin-left: 150px;
    }
}