body{
  margin: 0;
  background: url('/images/webBG.png') no-repeat fixed center/cover;
}
#thug{
  position: absolute;
  left: 25%;
  width:50%
}
.nav {
    overflow: hidden;
    background-color: white;
}

.nav a {
    float: left;
    color: DarkSlateGray;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    height: 5%;
}

.nav a:hover {
    background-color: DarkSlateGray;
    color: white;
}
@media (prefers-color-scheme: dark) {
    .nav{
      background-color: #2F4F4F;
    }
    .nav a {
        float: left;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 20px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    .nav a:hover {
        background-color: white;
        color: #2F4F4F;
    }

}
#home{
  float: left;
  height: 5%;
}
#top-text {
    color: white;
    font-size: 40px;
    text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;  
}
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: #CEF7F6;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(#FB68D9, #8A68FB);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#8A68FB, #FB68D9);
}
