/* --- Global Styles --- */
body {
    background: url('/images/webBG.png') no-repeat fixed center/cover;
    margin: 0;
}
        iframe {
          margin: 0px;
            padding: 0px;
            height: 100%;
            border: none;
            display: block;
            width: 100%;
            overflow-y: auto;
            overflow-x: hidden;
        }
/* --- Navigation --- */
.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;
}
iframe{
  height: 90%;
}
#home {
    float: left;
}

/* --- Content Sections --- */
.card {
    border-radius: 10%;
    overflow-y: auto;
    background-color: white;
    height: auto;
    margin: 0;

}
@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;
    }

}
::-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);
}