body {
	margin: 0;
	width: 100%;
	height: 100vh;
	font-family: "Exo", sans-serif;
	color: black;
	background: linear-gradient(-45deg, orange, #e73c7e, orange, #23a6d5, yellow);
	background-size: 800% 800%;
    animation: gradientBG 30s ease infinite;
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.logo {
    display: block;
    max-width: 40vw;
    max-height: 40vh;
    position: absolute;
    margin: auto;

    z-index: 3;
    animation: rotation 2s infinite ease-in-out;
}
.backgroundImg {
  position: absolute;
  margin: 0 auto;
  width: 25em;
  z-index: 1;
}
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(719deg);
    }
}
.maindiv {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    align-content: center;
    background-color: transparent;
    align-items: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);

    left: 1;
    right: 1;
}
#coolDown {
    text-align: center;
    position: absolute;
    margin: 0 auto;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100vh;
    z-index: 2;
    border: none;
    border-radius: 0em;
    align-content: center;
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.5s ease-in-out;
}
#coolDown.show {
    text-align: center;
    align-content: center;

    position: fixed;
    margin: 0 auto;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100vh;
    z-index: 2;
    border: none;
    border-radius: 0em;
    background-color: rgba(0, 0, 0, 0.75);
    clip-path: circle(100% at 50% 50%);
    transition: clip-path 0.5s ease-in-out;
}
div {
    display: inline-block;
    
    border: none;
    border-radius: 1em;
    margin: 1em;
    width: 400px;
    height: 300px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.322);
    background-color: white;
}
button {
    border: none;
    border-radius: 2em;
    background-color: #23a6d5;
    cursor: pointer;
    color: white;
    width: 10em;
    height: 2.5em;
    font-size: 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
    transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
button:hover {
    background-color: #2083a7;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.322);
    transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.centeredbutton {
    text-align: center;
    background: transparent;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
    margin: 0 auto;
    width: 100%;
    height: 20%;
}
.whitebutton {
    border: none;
    border-radius: 2em;
    background-color: white;
    color: black;
    width: 10em;
    height: 2.5em;
    font-size: 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
    transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.whitebutton:hover {
    background-color: rgb(189, 189, 189);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.322);
    transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
form {
    text-align:center;
}
input {
    border: none;
    border-radius: 2em;
    background-color: #23a6d5;
    display: inline-block;
    color: white;
    cursor: pointer;
    width: 10em;
    height: 2.5em;
    font-size: 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
    transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
input:hover {
    background-color: #2083a7;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.322);
    transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
h3 {
    vertical-align: middle;
    font-size: 5em;
}
h4 {
    vertical-align: middle;
    text-align: center;
    font-size: 5em;
    color: white;
}
h5 {
    text-align: center;
}
footer {
    text-align: center;
    font-size: 2em;
}
.title {
    font-size: 2em;
    text-align: center;
    color: white;
    margin: 0 auto;
}
.loading {
    background: transparent;
    text-align: center;
    margin-left: -50%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0);
    position: fixed;
        left: 75%;
        right: 0%;
        top: 15%;
        width: 50%;
        height: 75%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
}
