/*noinspection CssUnknownTarget*/
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap');

* {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: normal;
  line-height: 1.35;
  color: rgb(37, 55, 83);
  text-align: left;
  background: #f4f4f6;
}

.container {
  min-height: 100vh;
  padding-left: .5rem;
  padding-right: .5rem;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  align-content: center;
}

.card {
  text-align: center;
  line-height: 1.5em;
  padding: 32px;
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

#logo {
  height: 3.5em;
}

#cog {
  animation: rotating 6s infinite linear;
  max-width: 1.2em;
  max-height: 1.2em;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

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