@import url('https://fonts.googleapis.com/css2?family=DM+Mono&family=DM+Sans:wght@400;500&display=swap');

html, body {
  height: 100%;
}

body {
	background-color: #111;
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
	text-align: center;
	color: white;
}

.verde {
  color: #16E693;
}

.jumbotron {
  display: table;
  background: none;
  height: 100%;
  width: 100%;
  margin-bottom: 0;
}

.jumbotron .container {
    display: table-cell;
    vertical-align: middle;
}

.jumbotron .container h1 {
	font-size: 36px;
	font-weight: 500;
}

@media (max-width: 768px) {
  .jumbotron .container h1 {
  font-size: 45px;
  }
}

.jumbotron .container a {
	color: white;
	text-decoration: none;
}

.jumbotron .container a:hover {
	text-decoration: underline;
}

.jumbotron .container #wip {
	padding-bottom: 20px;
}

.jumbotron .container #lista {
	font-family: 'DM Mono', monospace;
	letter-spacing: 10px;
}

.jumbotron .container .btn {
  background-color: transparent;
  border: none;
  color: #fff;
  font-weight: 300;
}

.jumbotron .container .btn:hover {
	background-color: white;
	padding: 10px;
	border-radius: 10px;
	color: #000;
	text-decoration: none;
}

.jumbotron .container .btn strong {
  font-family: 'DM Sans';
  font-weight: 500;
}

sup {
  font-weight: 900;
  font-size: 55%;
  margin-left: 1px;
}


/* Selecção de texto */

::-moz-selection {
  color: #16E693; 
  background: none;
}

::selection {
  color: #16E693; 
  background: none;
}

.verde::-moz-selection {
  color: #fff;
  background: none;
}

.verde::selection {
  color: #fff; 
  background: none;
}