body {
    background-color: #000000;
    color: #43f00a;
  }
  
  * {
  margin: 0px;
  padding: 0px;
   }
  
  #logo {
    max-width: 10%;
    height: auto;
  }
  
  #sticker {
    width: 20%;
    max-width: 100px;
  }
  
  #sticker:hover {
    transform: scale(2);
  }
  
  .blinky {
    animation-name: blinky;
    animation-iteration-count: infinite;
    animation-duration: 5s;
  }
  
  .cool {
    width: 55%;
    margin: auto;
    text-align: center;
    font-family: 'Source Code Pro', monospace;
    color: #43f00a;
  }
  
  .terminal {
      position: absolute;
      font-family: 'Source Code Pro', monospace;
      top: 42%;
      left: 50%;
      transform: translate(-50%, -50%);
      overflow: auto;
      font-size: 13px;
      background-color: #0C090A;
      color: #b3b8c3;
      width: 333px;
      border: solid 2px #1e1e1e;
      margin-left: auto;
      margin-right: auto;
      padding: 3px;
      word-wrap: break-word;
  }
  
  .links {
      text-decoration: none;
      font-family: 'Source Code Pro', monospace;
      color: #a3a3a3;
  }
  
  .links:hover {
      background-color: #737272;
      cursor: pointer;
  }
  
  .stuff {
    /* background-color: #000000; */
    backdrop-filter: blur(10px);
    background: rgba( 255, 255, 255, 0.25 );
    border-style: solid;
    text-align: center;
    font-family: 'Source Code Pro', monospace;
    margin: auto;
    width: 55%;
  }
  
  .stuff h1 {
    padding-left: 5%;
  }
  
  .stuff p {
    padding-left: 3%;
    padding-right: 3%;
  }
  
  .navbar {
    display: inline-grid;
    grid-template-columns: 33% 33% 33%;
    border-style: solid;
    border-color: #43f00a;
  }
  
  .wrapper {
    justify-content: center;
    align-content: center;
    width: 55%;
  
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    border-bottom: solid #43f00a;
    border-left: solid #43f00a;
  }
  
  .wrapper > div {
    text-align: center;
    border-top: 1px solid #43f00a;
    border-right: 1px solid #43f00a;
  }
  
  .wrapper a {
    color: rgb(248, 7, 196);
  }
  
  @keyframes blinky {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.1;
    }
    100% {
      opacity: 1;
    }
  }
  