* {
    box-sizing: border-box;   
    background-color: rgb(64, 63, 106);
    color: antiquewhite;
}

::-webkit-scrollbar {
    display: none;
}

#contentCards {
    width: 80%;
    margin-left: auto;
    margin-right: auto;

}

.classCards {
    display: inline-block;
    text-align: center;
    width: 150px;
    height: 150px;
    padding: 5px;
    margin: 3px;
    border-radius: 100%;
    border: 3px dotted antiquewhite;
    color: rgb(2, 0, 106);
    overflow: scroll;
}

.classCards:hover {
    background-color: antiquewhite;
}

.nameCards {
    font-size: xx-large;
    display: inline-block;
    text-align: center;
    vertical-align: center;
    width: 150px;
    height: 150px;
    padding-top: 50px;
    margin: 3px;
    border-radius: 100%;
    border: 3px dotted antiquewhite;
    color: rgb(2, 0, 106);
}

.nameCards:hover {
    background-color: antiquewhite;
}

/*
* {
    box-sizing: border-box;
    font-family: Verdana, sans-serif;
    color: green;
    background-color: black;
} 

a:link {
    color: purple;
}

a:visited {
    color: purple;
}

a:hover {
    color: white;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

table {
    font-size: 1.5vw;
    margin-left: auto;
    margin-right: auto;
    border-color: gray;
}

th, tr {
    padding: 15px;
}

li {
    display: inline;
    float: left;
}

li {
    display: block;
    padding: 8px;
}

.dropbtn {
    background-color: green;
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
    
.dropdown {
    position: relative;
    display: inline-block;
}
    
.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
    
.dropdown-content a {
    color: green;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
    
.dropdown-content a:hover {
    background-color: purple;
}
    
.dropdown:hover .dropdown-content {
    display: block;
}
    
.dropdown:hover .dropbtn {
    background-color: purple;
}