

.base {
    width: fit-content;
    height: fit-content;
    border: 2px inset black;
    box-shadow: 0 0 0 2px white,
        0 0 0 3px black;
    padding: 20px;
    margin: auto;
    border-radius: 5px;
 
}

/* unvisited link */
a:link {
    color: white;
}

/* visited link */
a:visited {
    color: white;
}

/* mouse over link */
a:hover {
    color: white;
}

/* selected link */
a:active {
    color: white;
}

.plate {
    width: 720px;
    height: 800px;
    border: 2px solid white;
    padding: 20px;
    margin: auto;
    border-radius: 5px;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    display: none;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: transparent;
}