header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2%;
}

.home-button{
    display: flex;
    font-size: 150%;
    align-items: center;
    font-weight: bold;
    color:rgb(30, 30, 30);
    border-radius: 25px;
    padding: 1%;
    text-decoration: none;
}

.home-button>img{
    width: 3em;
    margin: 0.5em;
}

.home-button:hover{
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.mainMenu>span{
    color: black;
    font-size: large;
    border-radius: 25px;
    padding: 0.5em 1em;
}

.mainMenu>span, .dropdown{
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.mainMenu>span:hover{
    background-color: black;
    color: white;
    transition: all 0.4s ease;
}

.mainMenu:hover .dropdown{
    display: block;
}

.dropdown{
    width: 15em;
    display: none;
    margin-top: 9px;
    margin-left: -9.5em;
    position: absolute;
    border-radius: 25px;
    border-style: none;
    background-color: white;
    list-style-type: none;
	padding: 0;

}

.dropdown a{
    color: black;
    display: flex;
    justify-content: center;
    margin: 0.5em;
    padding: 1em;
    border-radius: calc(25px - 0.5em);
    text-decoration: none;
}

.dropdown a:hover{
    background-color: black;
    color: white;
    transition: all 0.2s ease;
}

.contact-part>p{
    text-align: center;
    font-weight: bolder;
    font-size: 150%;
}

.contact-part a{
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}