body,
html{
    margin: 0;
    padding: 0;
}

body{
    background-image:url("../img/wallpaper.png");
    background-repeat:repeat;
    background-size:100%;
    background-attachment: fixed;
}

.loader {
    margin: auto;
    border: 5px solid rgba(255, 255, 255, 0.0);
    border-radius: 50%;
    border-top: 5px solid #a9d5ef;
    width: 130px;
    height: 130px;
    -webkit-animation: spin 0.7s linear infinite;
    animation: spin 0.7s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btnHome{
    background-color:white;
    box-shadow: 0px 0px 25px rgba(0, 151, 212, 0.2);
    padding:20px;
    width:150px;
    height:150px;
    border-radius:25px;
    cursor:pointer;
    padding-top:35px;
}

.btnHome p{
    color:#3e4095;
    font-weight:bold;
    font-size:14px;
    margin-top:5px
}

::-webkit-scrollbar {
    display: none;
}