body{
    background-color: #191919;
    font-family: 'League Spartan';
}

header{
    background-color: #7C77B9;
    color: #FFFCE8;
    margin: 40px;
    padding: 20px;
}

main{
    background-color: #FFFCE8;
    margin: 40px;
}

.menu{
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.logo{
    align-self: flex-start;
    flex-basis: 50%;
}

.dmg{
    flex-basis: 20%;
    width: 20%;
}

.dmgbtn{
    background-color: #FFFCE8;
    border: none;
    height: 40px;
    width: 100%;
}

.dmgbtn:hover span{
   display:none
}

.dmgbtn:hover:before{
    color: #7C77B9;
    content: "Daily Mood Generator!";
    font-family: 'League Spartan';
    font-size: 20px;
    font-weight: bold;
}

.dmg:hover .dmgbtn{
    background-color: #fff6b7;
}

/*Dropdown button*/
.dropbtn{
    background-color: #FFFCE8;
    border: none;
    height: 40px;
    width: 100%;
}

.dropdown{
    display: inline-block;
    flex-basis: 20%;
    position: relative;
    width: 20%;
}

/* Dropdown content (default hidden) */
.dropdown-content{
    background-color: #FFFCE8;
    box-shadow: 0px 8px 16px 0px #7C77B9;
    display: none;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    right: 0;
    text-align: center;
    width: 100%;
    z-index: 1;
}

/* links inside the dropdown */
.dropdown-content a{
    color: #7C77B9;
    display: block;
    padding: 12px 16px;
    text-decoration: none;
}

/* change color of dropdown links on hover */
.dropdown-content a:hover{
    background-color: #fff6b7;
}

/* show the dropdown menu on hover */
.dropdown:hover .dropdown-content{
    display:block;
}

/* change the background color of the button when the droptown content is shown */
.dropdown:hover .dropbtn{
    background-color: #fff6b7;
}

.search{
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

.form{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.searcher{
    background-color: #fff6b7;
    border: none;
    color: #7C77B9;
    height: 30px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

input[type="text"]:focus{
    outline: none;
}

.searchBtn{
    background-color: #7C77B9;
    border: none;
    border-radius: 0.5rem;
    color: #fff6b7;
    cursor: pointer;
    font-weight: 700;
    margin: 10px;
    outline: none;
    padding: 10px;
    text-transform: uppercase;
    transition: all .6s ease;
}

footer{
    background-color: #7C77B9;
    color: #FFFCE8;
    font-size: 20px;
    margin: 40px;
    padding: 20px;
    text-align: center;
}
