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;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

iframe {
    width: 80%; /* Możesz dostosować szerokość */
    height: 80%; /* Możesz dostosować wysokość */
    border: none;
    overflow:hidden;
}

footer{
    background-color: #7C77B9;
    color: #FFFCE8;
    font-size: 20px;
    margin: 40px;
    padding: 20px;
    text-align: center;
}
