#menu *{
    font-weight: bold;
    font-family: 'MV Boli';
    font-size: 20px;
}

#menu{
    background-color: #fffbef;
    height: 60px;
}
.dropdown-menu{
    display: block;
    opacity: 0;
    background-color: #7d933f;
    transition: 0.4s;
    border: none;
}

.dropdown-item {
    color: #fffbef;
}

.tbutton{
    text-decoration: none;
    color: #7d933f;
    cursor: default;
    margin: 10px;
}

.tbutton:hover{
    color: #7d933f;
}

.tdot {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 5px;
    background-image: url("https://static.igem.wiki/teams/5300/source/dot.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0, -10px);
    transition: 0.4s;
}

#ticon{
    width: 50px;
    height: 50px;
    background-image: url("https://static.igem.wiki/teams/5300/source/icon2.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.tlist{
    display: block;
    opacity: 1;
    transform: translate(0, -300px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 1, 1), transform 0.01s;
}

