/* General Styles */
* {
  transition: all 0.3s cubic-bezier(.17,.84,.44,1);
}

body {
  margin: 0px;
  background-color: #0e0e0e;
  color: white;
  font-family: 'omori';
}

a {
  color: skyblue !important;
  text-decoration: none !important;
}

a:hover {
  color: #00aff4;
  letter-spacing: 0.1em;
}

a:visited {
  color: #00aff4;
}

/* Header */
.status {
  display: flex;
  background-color: #00000050;
  letter-spacing: 0.3em;
  font-weight: bold;
  border-bottom: solid 2px #333;
  align-items: center;
  justify-content: center;
}

.header {
  padding: 8px;
  font-size: 1.2em;
  font-family: pkmn;
  cursor: default;
  user-select: none;
}

.header:active {
 scale: 1.05;
}

/* Columns */
.intro {
  display: flex;
  flex-grow: 1;
}

.column1 {
  width: auto;
  border-right: solid 2px #333;
  padding: 8px;
  min-width: 284px;
}

.column-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.buttons-wrapper {
  padding: 8px;display: flex;justify-content: center;flex-direction: column;align-items: center; flex-grow: 1;
}

.clickablebuttons {
  display: flex;gap: 8px;justify-content: center;flex-wrap: wrap;width: 280px;
}

.omori-text {
  font-family: 'omori';
  font-size: 26px;
  text-decoration: underline 1px;
  color: white !important;
}