/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #8D021F;
  color: black;
  font-family: Verdana;
}

.special1 {
font:9px 'silkscreen';
text-shadow:0px 0px 1px #FFD76B;
display:inline-block;
color:#904000;
justify-content: center;
align-items: center; 
padding:4px;
padding-left:50px;
padding-right:50px;
margin-right:5px;
background: #F8A31C;
border: 1px solid #904000;
box-shadow:
3px 3px 8px #EFFDE9,
inset 2px 2px 5px rgba(255, 255, 255, 0.9),
inset -2px -2px 5px rgba(255,255,255, 0.15);}
 
.special1:hover {transform: translateY(1px);}

sublinks a {
display: block;
padding: 4px 0;
color: #499657;
text-decoration: none;}
  
.sublinks a:hover { color: #666; }

.rightside { flex: 1; padding: 8px; }

.sublinks {
display: none;
padding-left: 8px;
margin-top: 0px;
cursor:pointer;}
  
.sublinks a {
display: block;
padding: 4px 0;
color: #499657;
text-decoration: none;}
  
.sublinks a:hover { color: #666; }




ul.special1 {
    margin-top: 200px;
    width: 100%;
    max-width: 300px;
    color: #353b3F;
    position: relative;
    cursor: pointer;
}

ul.special1 li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
}

.special1 .submenu {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #353B3F;
    border-radius: 1rem;
    padding: 1rem;
    transition: all .3s ease;
}
.special1 .submenu li {
    color: white;
    padding: 1rem;
    border-radius: .5rem;
    cursor: pointer;
    transition: background .2s ease;
}

.special1 .submenu li:nth-child(1):hover {
    background-color: #65D076;
}
.special1 .submenu li:nth-child(2):hover {
    background-color: #4B82FF;
}
.special1 .submenu li:nth-child(3):hover {
    background-color: #42B3DB;
}
.special1 .submenu li:nth-child(4):hover {
    background-color: #FA7E91;
}
.special1 .submenu li:nth-child(5):hover {
    background-color: #A073FF;
}

.special1 img {
    width: 1.1rem;
    transition: transform .2s ease;
}

.special1:hover img {
    transform: rotate(180deg);
}

.special1:hover .submenu {
    top: 100%;
    opacity: 1;
    pointer-events: all;
}



.resize {
    width: 100px;
    height: auto;
}

