/* font-family: 'Quicksand', sans-serif;
COLORS
light-yellow - #f7e4bf;
light-blue - #78a7c6;
dark-blue - #134d71;
white - #ffffff;
black - #000000;
*/

html {
    background: no-repeat center center fixed linear-gradient(#134d71 16%, #78a7c6, #f7e4bf);
    height: 100%;
}

body {
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    min-width: 372px;
}

h1 {
    color: white;
    margin-top: 1.5em;
    padding-bottom: 3em;
}

h2 {
    color: white;
}

.white-box {
    display: flex;
    flex-direction: column;
    margin: auto;
    min-width: 372px;
    border-radius: 10px;
    background-color: white;
}

label {
    font-style: italic;
}

.button-zone {
    align-items: center;
    height: 6em;
    width: 40%;
}

.input-div {
    width: 90%;
    padding-bottom: 2em;
    padding-top: 1em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

span {
    display: flex;
}

.button-zone > div > span:nth-child(1) {
    padding-left: 15%;
}

.button-zone > div > span:nth-child(2) {
    padding-right: 15%;
}

input {
    margin-right: 1.5em;
    transition: all .5s ease-in-out;
}

input:hover {
    transform: scale(2);
}

button {
    background-color: #134d71;
    color: white;
    border-radius: 5px;
    width: 33%;
    display: flex;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;
}

.mantra-zone {
    justify-content: center;
    margin-top: 100px;
    min-height: 8em;
    width: 60%;
}

.mantra-zone > span {
    justify-content: center;
    padding: 4.3em;
    font-style: italic;
}

img {
    margin: 2em;
}

.spinner:before {
    content: '';
    display: inline-flex;
    margin: 2em;
    padding: 2em;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #f6f;
    border-top-color: #0e0;
    border-right-color: #0dd;
    border-bottom-color: #f90;
    animation: spinner .6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

#fadeAndHide {
    animation: fadeOut 3s, hideAnimation 0s ease-in 2s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    40% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes hideAnimation {
    to {
        visibility: hidden;
        width: 0;
        height: 0;
    }
}

#revealMeAfter10Seconds {
    animation: fadeIn 10s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

#validation {
    animation: bounce 1.5s forwards;
}

@keyframes bounce {
    0% { transform: scale(1); }
    70% { transform: translateY(0%) scale(1.5); }
    80% { transform: translateY(-15%) scale(1.5); }
    90% { transform: translateY(0%) scale(1.5); }
    95% { transform: translateY(-7%) scale(1.5); }
    97% { transform: translateY(0%) scale(1.5); }
    99% { transform: translateY(-3%) scale(1.5); }
    100% { transform: translateY(0) scale(1.5); }
}

.hidden {
    display: none;
}


