@font-face {
    font-family: "comicsans";
    src: url(comic.ttf);
    font-weight: normal;
    font-style: normal;
  } 
  @font-face {
    font-family: "ageasy";
    src: url(AgriculturaEasy.ttf);
    
  } 

  @font-face {
    font-family: "porkys";
    src: url(porkys.ttf);
    
  } 


  @keyframes scrolling {
    0% {
      transform: translateX(0, 0, 0) translateY(0, 0, 0);
    }

    100% {
      transform: translateX(1920px, 0, 0) translateY(0, 1080px, 0);
    }
  }
    
  .pasokon {
    background-image: linear-gradient(to bottom, rgba(19, 255, 50, 0.3) 25%, rgba(65, 92, 230, 0.5) 100%), url("img/bg/daikoglobal.png");
    background-attachment: fixed;
    display: block;
    font-family: MS PGothic;
    text-align: center;

    cursor: url("img/cur.png"), default;
  
    
  }

  .scroll_diag { /*Diagonal background scrolling*/
    animation: diag 60s linear infinite;
  }

  @keyframes diag {
    0% {
      background-position-x: 0%;
      background-position-y: 0%;
    }
    100% {
      background-position-x: 100%;
      background-position-y: 100%;
    }
  }

  .scroll_left { /*Left background scrolling*/
    animation: left 30s linear infinite;
  }

  @keyframes left {
    0% {
      background-position-x: 100%;
    }
    100% {
      background-position-x: 0%;
    }
  }
  

  .hypernet {
    background-image: linear-gradient(to bottom, rgba(255, 124, 1, 0.3) 25%, rgba(134, 0, 56, 0.5) 100%), url("img/bg/daikoglobal2.png");
    background-attachment: fixed;
    display: block;
    cursor: url("img/cur.png"), default;
    
  }

  .proj {
    background-image: url(img/bg/cosmos.gif);
    overflow-x: hidden;
    overflow-y: scroll;
    width: 680px; 
    height: 510px;
    
  }

  .abttext {
    display: inline-block; 
    font-size: 0.8em; 
    font-family: MS PGothic; 
    padding: 5px; 
    color: white; 
    text-shadow: 1px 1px 1px rgb(119, 0, 255);
    
  }

  .list { 
    list-style: none;
    text-align: left;
    
  }
  #listans {
    display: block;
    background-image: linear-gradient(to right, rgb(35, 28, 68), rgb(9, 0, 48));
    border-radius: 10px;
    padding: 5px;

  }

  #listindex {
    display: block;
    background-image: linear-gradient(to right, rgb(52, 162, 196), rgb(0, 0, 0));
    border-radius: 10px;
    padding: 5px;

  }

  #listindex2 {
    display: block;
    background-image: linear-gradient(to right, rgb(175, 216, 81),rgb(39, 122, 53));
    border-radius: 10px;
    padding: 5px;

  }

  /* Hide scrollbar for Chrome, Safari and Opera */
.hide::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

  .top1 {
    display: block;
    position: relative;
    margin: auto;
    width: 700px;
    height: 300px;
  }
    
  .hd_logo {
    animation: wobbler 6s infinite ease-in-out;
    position: absolute;
    bottom: 150px;
    overflow: hidden;
    z-index: 1;
  }

  .pagewrapper {
    width: 1000px;
    height: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  #dashedbord {
    border: 1px dashed black;
    margin: 10px;
    display: inline-block;

  }

  #solidbord {
    border: 1px solid black;
    margin: 10px;
    display: inline-block;
  }

  .navlink{
    display: inline-block; 
    height: 30px; 
    text-decoration: none; 
    height: auto; 
    text-align: center; 
    margin: 5px;
  }

  .navtext{
    color: white; 
    font-size: 18px; 
    text-shadow: 1px 1px 1px rgb(109, 44, 170); 
    position: relative; 
    bottom: 8px;
  }

  .navtext:hover{
    color: rgb(229, 255, 0); 
    text-shadow: 1px 1px 1px rgb(0, 114, 38); 
    text-decoration: underline;
  }


  @keyframes wobbler {
    0% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(-5deg); }
  }

