*{
    font-family: 'Sora', sans-serif;
}
html, body{
    height: 100%;
    overflow: hidden;
}
body{
    background-image: -webkit-linear-gradient(65deg, #1a75ff 50%, #b3d1ff 50%);
    text-align: center;
    max-height: 100%;
}

p{
    font-size: larger;
    width:100%;
    line-height: 5rem;
    color:#fff;
    text-align: center;
}
img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    width: 30%;
    margin-top: 1%;
} 
h1,h2{
    color:#1a75ff;
    text-align: center;
    
    margin-top: 1%;
}
.row{
    width: 100%;
}
#button{
    display: inline-block;
    padding: 2.7rem 7.5rem;
    background-color: #b3d1ff;
    font-size: 2rem;
    text-decoration: none;
    color:#1a75ff;
    border-radius: 10px;
    transition: background 0.5s;
    cursor:pointer;
    margin-top: 3%;

    
}
#button:hover{
    background-color: #dadada;
}


@media only screen and (max-width:750px){
    #button{
        margin-top: 15%;
        padding: 2.5rem 3rem;
        
    }
    h1,h2{
        margin-top: 10%;
    }
    img{
        margin-top: 20%;
    }
}
@media only screen and (min-width:750px) and (max-width: 1100px){
    #button{
      margin-top: 10%;  
      padding: 2.5rem 3rem; 
    }
    h1{
        margin-top: 5%;
    }
    h2{
        margin-top:2% ;
    }
    img{
        margin-top: 8%;
    }
}



