body{
    background-color: var(--background-color);
    font-family: 'Nunito', sans-serif;
}

.preloader
{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--background-color);
z-index: 9999;
text-align: center;
}	

.loader {
    border: 16px solid #ffffff; /* Light grey */
    border-top: 16px solid var(--main-color); /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 1s ease-in-out infinite;
    margin-left: auto;
    margin-right: auto;
    margin-top: 350px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.crunch{
    color: var(--text-color);
    font-weight: bold;
    font-size: 50px;

}
.heading{
    color: var(--text-color);
    text-align: center;
    font-weight: bold;
    font-size: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    width: 65%;
}

.form-wrap{
    text-align: center;
    margin-top: 100px;
}

.form{ 
    color: var(--footnote-color);
    text-align: center;
    font-family: "Nunito";
    font-size: 40px;
    font-weight: bold;
    width: 35%;
    height: 80px;
    padding: 10px;
    border-radius: 73px;
    border: none;
    margin-bottom: 50px;
}

.warning{
    display: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 30px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

.button{
    display: block;
    color: var(--text-color);
    background-color: var(--main-color);
    font-family: "Nunito";
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 73px;
    border: none;
    cursor: pointer;
    width: 20%;
    padding: 20px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    transition: color .30s ease-in-out;
    transition: background-color .30s ease-in-out;
}

.button:hover{
    color: var(--main-color);
    background-color: var(--text-color);

}



@media (max-width: 850px){

    
.loader {
    border: 16px solid #ffffff; /* Light grey */
    border-top: 16px solid var(--main-color); /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
  }
.heading{
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 100%;
}

.form-wrap{
    text-align: center;
    margin-top: 100px;
}

.form{ 
    width: 95%;
    height: 60px;
    padding: 5px;
    border-radius: 73px;
    border: none;
    font-size: 25px;
    margin-bottom: 75px;
}

.warning{
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

.button{
    border-radius: 73px;
    width: 70%;
    padding: 20px;
    font-size: 25px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;

}


}