/* ubuntu-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/ubuntu-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.titleRed{
  color:#dc322f;
  font-size: 22px;
}

.green{
  color:#00ff00;
}

.logo{
  width:50px;
}

a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

body {
  background-color: #383838;
  text-align: center;
  color: #86aaa4;
  line-height: 130%;
  font-family: 'Ubuntu', sans-serif;
  font-size: 19px;
}

.container {
  padding: 2%;
  padding-top: 5%;
}

.mobile-display {
  display: none
}

.desktop-display {
  display: block
}

@media (max-width:800px) {
  .desktop-display {
    display: none
  }

  .mobile-display {
    display: block;
  }
}
