@import url('https://fonts.googleapis.com/css?family=News+Cycle&display=swap');
* {
    font-family: 'News Cycle', sans-serif;
} 
html {
    width:100%; height:100%;
}
body {
    width:100%; height:100%;
    background-color: white;
    color: darkslategray;
}


.menuItem {
    background-image: linear-gradient(rgb(255,0,0), rgb(132,34,30));
    border-radius:5px; border:solid 1px white; border-color: rgb(255,128,128) rgb(132,34,30) rgb(132,34,30) rgb(255,128,128);
}

.menuItem a {
    text-decoration: none; display:inline-block; padding:2px 15px; color:white;
    font-weight: bold; font-size:large; flex:1;
    
}

ul.menu2 {
    list-style-type:none;
    padding: 0px;
    margin: 0px;
}

ul.menu2 {
    position: absolute;
    z-index: 10;
    display:none;
}

ul.menu2 li {
    background-color: rgb(245,245,245);
    clear: both;
    text-align: left;
}

ul.menu2 li a {
     display:inline-block;  padding:5px 20px; text-decoration: none; color:white; font-size:large; text-align:left;
    background-image: linear-gradient(rgb(255,0,0), rgb(132,34,30));
    border-top: sold 1px rgb(255,128,128); width:120px;
}
.menuItem:hover ul.menu2 {
    display:block;
}

h3 {
    margin-top: 0px;
}

a {
    color: white;
}