/* MOBILE */
/* TABLET */
/* DESKTOP */
* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif; }

html {
  scroll-behavior: smooth; }

body, button {
  font-family: 'Montserrat', sans-serif;
  color: #FFF; }

body {
  background: #000; }

a {
  text-decoration: none;
  color: #fff; }

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 2px; }

::-webkit-scrollbar {
  width: 6px;
  background-color: #151515; }

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #151515; }

.app {
  display: flex;
  flex-direction: column;
  align-items: center; }

.intro img {
  width: 100%;
  height: 100vh; }

.app {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  justify-content: space-between;
  display: none;
  background: url(../assets/background.png) no-repeat;
  background-size: cover;
  height: auto; }
  .app .logog {
    width: 30%;
    margin-bottom: 10px; }
  .app .logo {
    width: 70%; }

.buttons {
  display: flex;
  flex-direction: column;
  margin: 40px 0 0 0px;
  width: 90%; }

.buttons .buttonlink {
  display: flex;
  background: #101010;
  padding: 16px 12px 16px 12px;
  border-radius: 20px;
  width: 100%;
  align-items: center; }
  .buttons .buttonlink.b-red {
    background: #CC3300;
    box-shadow: 0px 12px 4px rgba(0, 0, 0, 0.25); }
  .buttons .buttonlink.b-blue {
    background: #010066;
    box-shadow: 0px 9px 4px rgba(0, 0, 0, 0.25); }

.about {
  display: flex;
  text-align: center;
  width: 90%;
  font-weight: 600;
  font-size: 16px; }

.buttons .buttoncomp {
  display: flex;
  margin: 12px 0;
  width: 100%; }
  .buttons .buttoncomp a span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF;
    border-radius: 50%;
    padding: 20px;
    width: 70px;
    height: 70px; }
  .buttons .buttoncomp a span img {
    width: 40px; }
  .buttons .buttoncomp .info {
    margin-left: 16px; }

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px; }
  footer img {
    width: 100px;
    margin-right: 8px; }
  footer .info h3 {
    font-weight: 700;
    font-size: 1.4rem; }
  footer .info h4 {
    font-weight: 600;
    font-size: 1.2rem; }
  footer .info span {
    font-weight: 300;
    margin-top: 2px;
    font-size: .9rem; }

footer p {
  margin: 120px 0;
  font-weight: 600;
  color: #303030; }

footer a {
  color: #0d0d0d;
  font-weight: 900; }

@media (min-width: 769px) {
  .app .logog {
    width: 200px; }
  .app .logo {
    width: 300px; }
  .buttons {
    margin: 40px 0 0 12px;
    width: 40%; }
  .buttons .buttonlink {
    padding: 10px 10px 10px 74px;
    font-size: 1.7rem;
    width: 100%; }
  .buttons .buttoncomp {
    transition: background .2s, color 5s; }
    .buttons .buttoncomp a.icon {
      padding: 18px;
      position: absolute;
      top: -14px;
      left: -40px;
      color: #101010;
      font-size: 2.29rem;
      width: 100px;
      align-items: center;
      justify-content: center; }
    .buttons .buttoncomp :hover {
      background: #030303;
      color: #ffcc00;
      transition: background .2s, color .2s; } }
