@font-face {
  font-family: 'OpenSans';
  /*src: url('fonts/Globus-Baumarkt-CondBold.ttf') format('truetype');*/
  src: url('fonts/OpenSans-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'OpenSans';
  background-color: #f3f3f3;
  margin: 0px;
  padding: 0px;
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  margin-top: -40px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-left: 50px
}

.logo {
  height: 100px;
  width: 300px;
}

.title {
  text-align: center;
  font-size: 28px;
  color: #505555;
}

.subtitle {
  font-size: 15px;
  color: #505555;
  text-align: center;
  margin-top: -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  display: block;
  width: 70px;
  height: 70px;
  border: 7px solid #F07D003b;
  border-radius: 50%;
  border-top-color: #F07D00;
  animation: spin 1s linear infinite;
  margin-top: 35px;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}