
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500');

body {
  background-color: #fcfbfa;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-family: Montserrat;
  justify-content: space-between;
  min-height: 100vh;
  padding: 60px 0 }

#header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 30px }

#logo {

  background-repeat: no-repeat;
  background-size: contain;
  height: 22px;
  width: 200px }

#lang-selector {
  margin: 10px 10px 0 0;
  position: absolute;
  right: 0;
  top: 0 }

.lang {
  color: #aaa !important }

.lang.active {
  color: #333 !important }

#content {
  display: flex;
  flex-direction: row;
  justify-content: center }

#links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100% }

.link {
  align-items: center;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 30px 30px;
  overflow: hidden;
  padding: 20px;
  width: 500px }

#compact-links {

}

.compact-link {
  color: #555;
  display: block;
  font-weight: 500;
  line-height: 25px;
}

.compact-link:active {
  color: #999
}

.compact-link[disabled] {
  color: #aaa;
  cursor: default;
}

.compact-link-separator {
  height: 25px;
}

.link-image {
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  height: 200px;
  width: 300px }

.link-title {
  color: #333;
  font-weight: 500;
  margin-top: 20px;
  text-align: center }

.link-hover {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  opacity: 0;
  position: absolute;
  text-decoration: underline;
  transition: opacity .1s;
  width: 100% }

.link:hover .link-hover {
  opacity: 1 }

#footer {
  color: #aaa;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 30px }
