@charset "UTF-8";
/* CSS Document */

{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body, html {
      width: 100%;
      height: 100%;
      overflow: hidden;
      font-family: Arial, sans-serif;
      color: white;
    }

    header {
      position: absolute;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 80px 20px 40px;
      z-index: 9999;
    }

    .logo {
      width: 130px;
    }

    .menu-btn {
      width: 30px;
      height: 20px;
      cursor: pointer;
      position: relative;
    }

    .menu-btn div {
      background: #ffffff;
      height: 4px;
      margin: 5px 0;
      border-radius: 2px;
    }

    .overlay-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .overlay-menu.active {
      display: flex;
      opacity: 1;
    }

    .overlay-menu ul {
      list-style: none;
      text-align: center;
    }

    .overlay-menu li {
      margin: 20px;
      font-size: 2rem;
      color: white;
    }

    .submenu {
      margin-top: 10px;
      font-size: 1.5rem;
    }

    .screen {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .screen.active {
      opacity: 1;
      /*z-index: 2;*/
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
    }

    .content {
      position: relative;
      text-align: center;
      z-index: 2;
    }

    .binary {
      font-family: monospace;
      margin-top: 20px;
    }

    .contact {
      text-align: center;
      color: white;
    }
  a:link {
    color: #FFFEFE;
    text-decoration: none;
}
a:visited {
    text-decoration: none;
    color: #FFFFFF;
}
a:hover {
    text-decoration: underline;
    color: #e1251b;
}
a:active {
    text-decoration: none;
    color: #FFFFFF;
}
	  
  .button {
  display: inline-block;
  border-radius: 4px;
  background-color: #e1251b;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  padding: 10px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
