hr {
    width: 70%;
    margin: 0 auto;
}

.animate {
    transition: all 0.5s ease-in-out;
}

.empty {
    flex-basis: 10%;
}

.exit-menu {
    /* font-size: 100px; */
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    color: black;
    padding: 25px;
}

.menu {
    display: flex;
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    text-align: center; 
    justify-content: space-evenly;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    font-size: 75px;

    background-color: rgb(51, 51, 51);
    height: 100%;
    width: 100%;
    z-index: 10;
}

.menu a {
    padding: 15%;
}

.menu-button {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: fixed;
    top: 0;
    left: 0;

    height: 100px;
    width: 100px;
    /* border: 1px black solid; */
    padding: 25px;
}

.menu-line {
    width:98%;
    height: 10%;

    background-color: black;
    border-radius: 15px;
}

.mobile-nav {
    display: none;
}


.menu-off{
    transform: translate(-100%, 0);
}

.menu-on{
    transform: translate(0, 0);
}

.x {
    position: absolute;
    width: 75px; 
    height: 8px;
    background-color: white;
    transform: rotate(45deg);
    border-radius: 5px;
}

.x:nth-of-type(2){
    transform: rotate(-45deg);
}


@media (max-width: 980px) {
    .nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }
}