/** main.css **/

@keyframes fadeUpAnim {
    0% { opacity: 0; }
  100% { opacity: 1; }
}

html {
  height: 100%;
  width: 100%;
}

body {
  align-items: center;
  animation: fadeUpAnim 1s ease-in-out 0.2s forwards;
  background: rgb(200, 225, 255);
  color: black;
  display: flex;
  flex-direction: column;
  font-family: verdana;
  font-size: 0.95em;
  height: 100%;
  justify-content: center;
  opacity: 0;
  padding: 2em 2em 2em 2em;
  width: 100%;
}

.mainContainer,
.mainContainerError {
  align-items: center;
  background: white;
  border-radius: 1em;
  box-shadow: 1em 1em 1em rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  height: 350px;
  justify-content: flex-start;
  width: 700px;
  padding: 1em;
}

.mainContainerError {
  background: black;
  color: rgb(200, 0, 0);
  justify-content: center;
  height: 200px;
  width: 450px;
}

.title {
  color: rgb(25, 135, 35);
  font-family: frederickaTheGreat;
  font-size: 2.5em;
}

.subTitle {
  font-family: frederickaTheGreat;
  font-size: 1.2em;
  margin-top: 1em;
}

.logoImage {
  animation: fadeUpAnim 1s ease-in-out 1.5s forwards;
  height: 20em;
  margin-top: 3em;
  opacity: 0;
}

.error,
.errorSmall {
  color: red;
  font-family: monospace, "Courier New";
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}

.errorSmall {
  font-size: 0.8em;
  margin-top: 0.75em;
}
