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

.content {
    height: calc(100% - 60px); /* Taille restante moins la hauteur du menu */
    width: 100%;
}

iframe {
    width: 100%;
    height: 100%;
}

.menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Hauteur du menu */
    background-color: #ffffff; /* Fond blanc */
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1); /* Ombre sous le menu */
}

.menu a {
    text-decoration: none;
    color: inherit;
}
