.text-2 {
    font-size: 20px;
    background-color: rgb(193, 212, 240);
}
.text-3 {
    font-size: 15px;
    background-color: rgb(230, 230, 230);
}
.text-1 {
    font-size: 15px;
}
.table-3 {
    background-color: rgb(193, 212, 240);
}
.table-2 {
    background-color: rgb(111, 159, 231);
}
.table-1 {
    background-color: rgb(193, 212, 240);
}
.pressed-button {
    text-decoration: none;
    display: inline-block;
    padding: 12px 40px;
    margin: 10px;
    margin-left: 0px;
    border-radius: 10px;
    background-image: linear-gradient(45deg, #6ab1d7 0%, #33d9de 50%, #002878 100%);
    background-position: 100% 0;
    background-size: 200% 200%;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: white;
    box-shadow: 0 16px 32px 0 rgba(0, 40, 120, .35);
    transition: .5s;
}
.pressed-button:hover {
    box-shadow: 0 0 0 0 rgba(0, 40, 120, 0);
    background-position: 0 0;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}
