* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
  font-family: 'Segoe UI', sans-serif;
  cursor: default;
  position: relative;
}

.screen {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

.pink {
  background-color: #ffb6dd;
  color: white;
  font-family: 'Boldins', cursive;
}

.white {
  background-color: #fff9f9;
  color: black;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.2em;
  text-align: center;
  padding: 20px;
}

.blue {
  background-color: #0159a0;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.welcome-text {
  font-size: 4em;
  margin-bottom: 30px;
}

#start-button {
  padding: 12px 25px;
  font-size: 1.2em;
  border: none;
  background-color: white;
  color: #ff4fa6;
  font-family: 'Boldins', cursive;
  cursor: pointer;
  transition: all 0.2s;
}

#start-button:hover {
  background-color: #ffe5f1;
}

.shutdown-text {
  font-size: 20px;
  font-weight: normal;
  margin-top: 20px;
}

.shutdown-gif {
  width: 60px;
  height: 60px;
}

.error-box {
  position: absolute;
  width: 300px;
  height: 150px;
  background-image: url('/assets/errorbox.png');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 9999;
}
