.menu__container {
    z-index: 3005;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateZ(1000000000000px);
    opacity: 0;
    display: none;
    transition: opacity 300ms ease-in-out;
    cursor: initial;
}

.menu__container p {
    position: relative;
    color: white;
    padding: 0.5em;
    margin: 0px;
    text-align: center;
    font-family: 'Titillium Web', Helvetica, Arial, sans-serif;
    font-size: 2rem;
    cursor: pointer;

}

.menu__container p::after {
    content: '';
    position: relative;
    display: block;
    height: 2px;
    background-color: white;
    width: 0%;
    transition: width 200ms ease-in-out;
    margin: auto;
}

.menu__container.opened p:hover::after {
    width: 100%;
}

.menu__container span {
    position: absolute;
    color: white;
    right: 0;
    top: 0;
    margin: 2rem;
    font-size: 2rem;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 100;
}

.menu__footer {
    width: 40%;
    text-align: center;
}

.menu__footer img {
    width: 1.9rem;
    height: 1.9rem;
    margin: 2em 1em;
    text-align: center;
    
}

.menu__footer hr {
   border: none;
   background-color: white;
   height: 1px;
    
}

.menu__footer a, .menu__footer a:hover, .menu__footer a:focus, .menu__footer a:visited {
    text-decoration: none;
    
}