.nav{
    width:100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.nav-title{
    width: 100%;
    min-height: 80px;

    display: flex;
    align-items: center;
    text-decoration: none;
    flex-direction: column;
    margin-bottom: 20px;

}

@media only screen and (max-width: 600px) {
    .nav-button{
        padding-left: 10px !important;
        padding-right: 10px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        height: auto !important;

        font-size: 0.7em;
        
    }
}

.nav-title > .nav-title-text{
    width: 100%;
    text-align: center;
    font-family: Hirosht;
    font-size: 3em;
    text-shadow: 0 10px 30px black;
}

.nav-title > .nav-title-subtitle{
    width: 100%;
    text-align: center;
    font-family: Alpha-Medium;
    font-size: 1em;
    text-shadow: 0 10px 30px black;
}

.nav-content{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    /* flex-wrap: wrap; */
}

.nav-button{

    padding-left :5px;
    padding-right :5px;
    height: 70px;
    display: flex;
    align-items: center;
    /* width: 100%; */
    /* margin-left: 10px; */
    /* margin-right: 10px; */
    text-decoration: none ;

    border-radius: 10px;
    /* box-shadow: 0 0 10px black; */
    /* background-color: var(--background);     */
    transition: all ease-in-out 0.2s;
}

.nav-button:hover{
    /* box-shadow: inset 0 0 10px black,0 0 10px black; */
    text-shadow: 0 0 20px white,0 0 20px white,0 0 20px white;
    transition: all ease-in-out 0.2s;
}

.nav-button > *{
    width: 100%;
    text-align: center;
    font-size: 1.3em;
    font-family: Alpha-Medium;
    text-wrap: nowrap;
    overflow-x: visible;
}