@charset "UTF-8";
/* * {
  outline: 1px solid red;
  outline-offset: -1px;
} */
body {
  background-color: #272727;
  font-family: Helvetica, Arial, sans-serif;
  color: #eeeeee;
}
::selection { background: #ee3674; }
h1 {
  font-weight: normal;
  font-size: 2em;
}
.avatar {
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}
.badge {
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}
#header {
  padding: 2em;
}
#logos {
  padding-bottom: 3em;
}
figure {
  display: inline-block;
  border: 0px;
  padding: 1em;
  margin: 0em;
}
figcaption {
  margin: 1em;
  font-weight: bold;
  font-size: 0.75em;
  color: #eeeeee;
}
img.icon {
  transition: all 0.2s;
  border: 0px;
  padding: 0px;
  margin: 0px;
  filter: saturate(0.7);
  margin-top: 25px;
  font-size: 21px;
  text-align: center;
}
img.icon:hover {
  transform: scale(1.1);
  filter: saturate(1);
}
#outer {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
  align-content: center;
}
#middle {
  display: table-cell;
  vertical-align: middle;
}
#inner {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 90%;
  min-width: 620px;
  max-width: 700px;
  animation: fadein 2s;
}
.panel {
  position: relative;
  background-color: rgb(52, 52, 52);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
  border-radius: 32px;
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
