* {margin: 0; padding: 0; scroll-behavior: smooth;}

body {
    color: #fff;
    font-family: "Roboto Mono", monospace;
    overflow-x: hidden;
    background-color: #000f26;
}

a {
  text-decoration: none;
  color: #fff;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::selection {
  color: #fff;
  background: #0770c7;
}

.logo {
    margin-top: 200px;
    width: auto;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.desc {
    margin-top: -60px;
    color: #fff;
    font-size: 15px;
    text-align: center;
}

.links {
    margin-top: 40px;
    color: #fff;
    font-size: 15px;
    text-align: center;
}

.links a {
    margin-top: 10px;
    display: block;
}

.links a:hover {
    transition: 0.2s;
    color: #ffd900;
}

@media screen and (max-width: 700px) {
    .logo {
      height: 160px;
    }

        .desc {
        margin-top: -20px;
    }
  }

  @media screen and (max-width: 520px) {
    .logo {
      height: 150px;
    }

    .desc {
        font-size: 12px;
    }
  }
