.menu-dropdown-item{
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 4px;
    text-align: center;
}
.menu-dropdown-item:hover{
    cursor: pointer;
    font-style: italic;
}
#menu-dropdown{
    position: absolute;
    width: 150px;
    padding: 20px;
    background-color: rgba(255,255,255,1);
    border-radius: 5px;
    z-index: 1000;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #menu-dropdown{
        width: 300px;
        right: 20px;
    }
    .menu-dropdown-item{
        font-size: 50px;
        line-height: 60px;
        margin-bottom: 40px;
        letter-spacing: 6px;
    }
} 

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px)  and (max-width: 767px) and (orientation : portrait) {
    #menu-dropdown{
        width: 300px;
        right: 20px;
    }
    .menu-dropdown-item{
        font-size: 50px;
        line-height: 70px;
        margin-bottom: 15px;
        letter-spacing: 7px;
    }
} 
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 767px) and (orientation : landscape) {
    #menu-dropdown{
        width: 300px;
        right: 20px;
    }
    .menu-dropdown-item{
        font-size: 50px;
        line-height: 70px;
        margin-bottom: 15px;
        letter-spacing: 7px;
    }
} 

/* Medium devices (portrait) */
@media only screen and (min-width: 768px) and (max-width: 991px) and (orientation : portrait) {
    #menu-dropdown{
        width: 300px;
        right: 20px;
    }
    .menu-dropdown-item{
        font-size: 60px;
        line-height: 90px;
        margin-bottom: 20px;
        letter-spacing: 7px;
    }
}
/* Medium devices (portrait) */
@media only screen and (min-width: 768px) and (max-width: 991px) and (orientation : landscape) {
    #menu-dropdown{
        width: 300px;
        right: 20px;
    }
    .menu-dropdown-item{
        /*font-size: 2em;*/
        font-size: 60px;
        /*line-height: 1.6em;*/
        line-height: 70px;
        margin-bottom: 20px;
        letter-spacing: 7px;
    }
} 


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px)  and (max-width: 1199px){
    #menu-dropdown{
        width: 300px;
        right: 20px;
    }
    .menu-dropdown-item{
        font-size: 56px;
        line-height: 80px;
        letter-spacing: 5px;
    }
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px)  and (max-width: 2499px){
    #menu-dropdown{
        width: 300px;
        right: 20px;
    }
    .menu-dropdown-item{
        font-size: 56px;
        line-height: 80px;
        letter-spacing: 5px;
    }
}
/* Incredible large devices (large laptops and desktops, 2500px and up) */
@media only screen and (min-width: 2500px) {
    #menu-dropdown{
        width: 300px;
        right: 20px;
    }
    .menu-dropdown-item{
        font-size: 65px;
        line-height: 80px;
        letter-spacing: 5px;
    }
}