html {
    height: 100%
}
 /* ------------------------------------- */
body {

    padding: 0;
    margin: 0;
    background-color: black;
    background-image: url(../images/Code_back.png);
    background: cover;
    background-repeat: repeat-y;
    animation: animate 35s linear infinite;
    width: 100vw;
    height: 100vh;
    text-decoration: none;

    --menu-item-size: 50px;
    --green-color: #329680;
    --blue-color: #099c95;
    --dark-green-color: #175b52;
    --white-color: #FFF;
    --gray-color: #EDEDED;
    --container-width: 700px;
    --container-height: 400px;
    --line-offset: calc((100% - var(--container-height))/ 2 + var(--menu-item-size) + 0.6em);
}
@keyframes animate {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 100%;
    }
}

/* ------------- */
.container {
    width: var(--container-width);
    height: var(--container-height);
    margin-left: -350px;
    margin-top: -200px;
    top: 50%;
    left: 50%;
    position: absolute;
    z-index: 1;
    text-decoration: none;
}
 /* ------------------------------------- */
/* nav {
    position: absolute;
    right: 15px;
    left: 52%;
    top: 50px;
    transform: translateX(-50%);
    display: inline-block;
    border: 0px solid white;
    border-radius: 0px;
    text-decoration: none;
  } */

  /* ------------------------------------- */
 object {
    margin-top: 1px;
    margin-left: 300px;

 }
 
 object ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
 }
   /* ------------------------------------- */

   .nav{
   
    border-width:1px 0;
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
}
.nav li{
    display:inline;
}
.nav a{
    display:inline-block;
    padding:10px;
}
  
.noscroll {
    overflow: hidden;
}

 
.highlight {
    
    display: inline-block;    
}

.highlight:hover {
    background-color: blue ;
    transition: .1s;
}