/* Universal styles */
body{
  margin: 0px;
  font-family: Roboto, Arial;
  color: white;
  background-color: rgb(53, 42, 42);
}

.capital-letter{
  text-transform: uppercase;
}

main{
  position: absolute;
  top: 15%;
  left: 15%;
  right: 15%;
}

.link{
  color: white;
  text-decoration: underline;
  cursor: pointer;
}

/* Custom highlight color */

::selection{
  background-color: yellow;
  color: black;
}

/* Font */

@font-face {
  font-family: Font Icons;
  font-weight: normal;
  src: url(/media/fonts/text-icons.ttf);
}

/* Warnings */

.warnings{
  position: relative;
  align-items: top;
  vertical-align: top;
}

.error{
  background-color: red;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
  max-width: 100%;
  position: absolute;
  margin-top: 1.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  visibility: hidden;
  z-index: 100;
  position: fixed;
}

/* Header and description */

.header,
.desc{
  text-align: center;
}

.header{
  margin-top: 0px;
}

/* Main game */

.main-game{
  text-align: center;
}
