* { 
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%; 
    background: #0B0B0E;
    background-repeat: no-repeat;
    background-size: cover; 
    background-attachment: fixed;
}

.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hstack {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.vstack {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    color: rgb(31,75,194);
    font-size: 7em;
    font-weight: 700;
}

h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    text-align: center;
}

h3 {
   /* color:rgb(29,96,176);*/
    font-size: 2em;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align:center;
    margin: 0;
    padding: 0;
}

h4 {
    color:white;
    font-size: 3.5vw;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align:center;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,  
input:-webkit-autofill::first-line {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 40rem rgb(93,101,131) inset;
    -webkit-font-size: 1.1em;
}





@media only screen and (min-width: 850px) {

    .ipad-only {
        display: none !important;   
    }

     .iphone-only {
        display: none !important;   
    }

}


/* For ipad */
@media only screen and (min-width: 575px) and (max-width: 850px){

    .desktop-only {
        display: none !important;   
    }

    .iphone-only {
        display: none !important;   
    }

}


/* For iphone */
@media only screen and (max-width: 575px){
  
    .ipad-only {
        display: none !important;   
    }

    .desktop-only {
        display: none !important;   
    }

}











