* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  width: 100vw;
  margin: auto;
  background-color: #6C79DCA9;
  color: #333;
}

.loading {
  width: 50px;
  height: 50px;
  border: 5px solid #6C7ADC;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  margin-top: 100px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.content {
  background-image: url('../images/bg.svg');
  background-repeat: repeat-y;
  background-size: 150%;
  padding: 1rem;
  min-height: 100vh;
  max-width: 100%;
  height: max-content;
  width: 100vw;
  padding-bottom: 5rem;
  box-shadow: 3px 3px 10px rgba(0,0,0,.2);
}

.content h1 {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.content h1 img {
  width: 50px;
}

#btn-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
}

button.btn {
  background-color: #6C7ADC;
  color: #FFF;
  border: none;
  padding: 1rem 0;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;

  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: end;
  gap: .5rem;
}

#btn-container button:hover {
  filter: brightness(.8);
  cursor: pointer;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  .content {
    min-height: calc(100vh - 3rem);
    height: calc(100vh - 3rem);
    max-width: 992px;
    margin: 1rem auto;
    border-radius: 1rem;
    padding-bottom: 4rem;
    overflow-y: scroll;
  }
}

@media screen and (min-width: 992px) {
  .content h1 {
    font-size: 2rem;
    font-weight: bolder;
  }
}

@media screen and (min-width: 992px) {
  button.btn {
    max-width: 992px;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0 0 1rem 1rem;
  }
}
