/*dropdown nav menu? - decide what style*/

.button {
    background-color: white;
    border-radius: 6px;
    padding: 10px;
    font-size: 16px;
    transition-duration: 0.4s;
    margin-right: 6px;
    margin-left: 6px;
}

.button:hover {
    background-color: black;
    color: white;
}

a.link{
    color: white;
    text-decoration: none;
}

#dropClick:hover{
    cursor: pointer;
}

#dropClick {
    background-color: white;
    border: none;
}

.dropdownContent {
    padding-left: 10px;
    padding-right: 10px;
    border: 2px;
    border-color: #eee;
    border-style: solid;
    width: 230px;
    display: block;
    position: absolute;
    top: 190px;
    right: 70px;
    background-color: white;
    color: black;
    font-size: 16px;
}


#scrollButton {
    display: none; 
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    border: blac; 
    background-color: white; 
    color: black; 
    cursor: pointer; /* Add a mouse pointer on hover */
    transition-duration: 0.4s;
    padding: 15px; 
    border-radius: 10px; 
    font-size: 18px; 
}

#scrollButton:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    
}
