* {
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.65;
    text-align: center;
}

.Introduction {
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
}

.White {
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
    color: white;
}

.Yellow {
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
    color: yellow;
}

.Whitelink {
    color: lightblue;
}

.dropdown-divider {
    text-decoration-line: underline;
    text-align: center;
    background: red;
    color: white;
}

.important-header {
    text-align: center;
    text-decoration-line: underline;
}

/* Dropdown Button */
.dropbtn {
    background-image: linear-gradient(to right ,#db1521, #850e78);
    color: white;
    padding: 1rem;
    font-size: 1rem;
    border: none;
}
  
/* The container <div> - needed to position the dropdown content */
.dropdown {
    top: 0;
    left: 0;
    position: fixed;
    display: inline-block;
}
  
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    height: 500px;
    width: 160px;
    box-shadow: 0rem 0.5rem 1rem 0rem rgba(0,0,0,0.2);
    z-index: 1;
    overflow-y: scroll;
}
  
/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    text-align: center;
    display: block;
}
  
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}
  
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}
  
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #ff00d4;}