

* {
    box-sizing: border-box;
}

html,body {
    margin:0;
    padding:0;
    height: 100%;
}



.nav{
    grid-area: nav;
    background-image: url(../images/background1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden; 
    padding-right: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section{
    grid-area: section;
    background-image: url(../images/background.png);
    background-size: cover;
    background-position: center;
    color:antiquewhite;
    width: 176vh;
}

.section section{
    margin: 15px;
}

.top_menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
}

.bottom_menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 230px;
}

.bouton{
    padding:10px;
    text-align: right;
}

.floor{
    text-align: center;
}

.save{
    max-width: 45vh;
    padding:10px;
}

.map {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.map img {
    max-width: 100%;
    height: auto;
}

.map img{
    align-items: center;
    max-width: 850px;
}

.aside aside{
    background-image: url(../images/background1.png);
    background-size: cover;
    background-position:center;
    position: fixed;
    top: 2;
    z-index: 99;
    text-align: center;
    font-size:xx-large;
    height: 100vh;
    padding: 10% 0%;
    width:40vh;
}

.aside{
    background-image: url(../images/background1.png);
    width:40vh;
}

.aside aside a{
    text-decoration: none;
    color: antiquewhite;
    padding: 8px 16px;

}

.nav img{
    max-width: 65px;
    max-height: 60px;
    position: absolute;
    left:105px;
    bottom: 13px;
}

.nav nav{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav a{
    text-decoration: none;
    color: rgb(250, 227, 196);
    padding : 28px 130px;
    font-size: x-large;
}



.grid-container{
    display: grid;
    grid-template-areas:
        "nav nav"
        "aside section";
}