@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: white;
}
header{
    height: 140px;
}

.headerContenedor{
    position: fixed;
    width: 100%;
    z-index: 2;
}

.MenuBar{
    width: 100vw;
    background-color: rgb(243, 151, 66);
    text-align: center;
    align-content: center;
    z-index: 1;
}

.MenuBar ul{
    list-style: none;
    width: 100vw;
    height: 100%;
}

.Menu > li{
    position: relative;
    display: inline-block;
    width: 15%;
    height: 100%;
}

@media (max-width: 510px){
	.Menu > li{
		position: relative;
		display: inline-block;
		width: auto;
	}
}

.Menu > li > a{
    display: block;
    font-family: 'Montserrat';
    color: rgb(255, 255, 255);
    font-weight: bold;
    padding: 10px 10px;
    text-decoration: none;
    transition: all .4s;
}

.Menu li a:hover{
    transform: scale(1.3);
    /*color: rgb(255, 232, 29);*/
}