@import url('https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap');

.topnav {
    overflow: auto;
    position: fixed;
    top: 1%;
    width: 98%;
    font-family: 'Tilt Warp', sans-serif;
}

.topnav a {
    float: right;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #D30000;
    color: white;
}

.icon a img {
    position: fixed;
    top: 1%;
    float: left;
}

.dropdown {
    display: inline-block;
    position: relative;
    float: right;
    text-align: center;
    text-decoration: none;
    width: 80px;
}

.dropdown-content {
    display: none;
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 10px 0 rgba(0,0,0,0.4);
    color: black;
    background-color: red;
    width: 80px;

}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content a {
    display: block;
    color: #000000;
    text-decoration: none;
    float: right;
    background-color: red;

    padding: 0 20px;
    width : 140%

}
.dropdown-content a:hover {
    color: #FFFFFF;
    background-color: #ce0a0a;
}