@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700&display=swap');

body {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  background-color: #000000;
  color: #fff;
  margin: 0;
  padding: 0;
}

.init {
  cursor: pointer;
  border: none;
  border-radius: 5px;
  color: #f2f2f2;
  background-color: #737373;
  text-align: center;
  align-items: center;
  position: relative;
  left: 0;
  top: 0;
  margin-top: 400px;
  width: 100px;
  height: 100px;
  font-size: 60px;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.init:hover {
  transform: scale(1.05);
}

#loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loadingGif {
  width: 100px;
  height: 100px;
}

#mainContent {
  display: none;
}

