* {
    
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdownimg:hover {
    cursor: pointer;
}
.dropdownitems {
    opacity: 0; 
    position: absolute; 
    width:100%; 
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 50% 0;
    right:  50rem;
    transition: all ease-in-out 0.5s;
}
.dropdownitems a {
    color: white;
}
.active {
    background-color: black;
    opacity: 100;
    transition: all ease-in-out 0.5s;
    right: 0rem;
}
body {
    background-color: antiquewhite;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: top;
    display: flex;
    flex-direction: column;
}
table td {
    border: solid black 0.1rem;
    padding: 1rem;
    padding-right: 10rem;

}
.box {
    justify-content: space-around;
    display: flex;
    background-color: lightsalmon;
    align-items: center;
}
.textbox {
border: solid black .2rem;
padding: .2rem;
margin-top: 1rem;
}
a {
    color: black;
    margin: 0;
    text-decoration: none;
}
a:hover {
    color: bisque;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
  }
  li { 
    float: right;
    margin-right: 3rem;
    font-size: 200%;

    padding: 3rem;
  }
  .fa-bars {
    color: black;
  }
  @media only screen and (max-width: 1000px) {
   li {
    margin-right: 0;
    margin-top: 3rem;
    float:none;
    font-size: 300%;}
    span {
    font-size: 125%;
    font-weight: 700;
    }
    .dropdownitems {
        opacity: 0; 
        position: absolute; 
        width:100%; 
        
        text-align: center;
        display: flex;
        flex-direction: column;
        padding: 50% 0%;
        right:  50rem;
        transition: all ease-in-out 0.5s;
    }
    .active {
        background-color: black;
        opacity: 100;
        transition: all ease-in-out 0.5s;
        right: 0rem;
    }
}