/* Testing CSS file */



body {
    
    

    background-color: lightgray; 

    opacity: 1; 
}


#welcome {
    color: blue;
}

#welcome2 {
    color: red;
}

b {
    margin: 50px;
}

h1 {
    border-style: dashed;
    border-width: 3px;
border-radius: 5px;
height: auto;
max-width: auto;
outline-style: dashed;
text-align: center;
/* text-decoration-line: overline; */
text-transform: Capitalize;
text-indent: 20px;
letter-spacing: 2px;

/* font-family: cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */

font-style: oblique;
font-weight: bold;
font-size: 30px;
}


b {
    padding: 40px 10px 20px 30px;
}


table, th, td {
    border: 2px solid black;
    width: 20%;
    border-collapse: collapse;
    text-align: center;
    padding: 5px;
    /* display: none; */
}

th {
    background-color: lightblue;
}
td {
    background-color: lightgreen;
}

th:hover {
    background-color: lightgray;
}
td:hover {
    background-color: lightgoldenrodyellow;
}

h3 b{
    color:red;
    padding: 0px;
}

.dropdown {
    position: relative;
    display: inline-block;
}


.dropdownbutton {
    background-color: lightblue;
    color:rgb(8, 8, 8);
    padding: 13px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin: 0px;
}

.dropdown-menu {
     display:none;
    position: absolute;
    background-color: red;
    min-width: 150px;
    padding: 11px 15px;
    color: black;
    text-decoration: none;
    
}

.dropdown-menu a:hover {
    background-color: lightblue;
    color: black;
}

.dropdown:hover .dropdown-menu {
    display: block;


}

.dropdown:hover .dropdownbutton {
    background-color: grey;
}


div [class="test"] {
    color: red;
}