nav{
    width: 100%;
    height: 70px;
    background-color: #fff;
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
    position: fixed;
    top: 0;
    z-index: 1000000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
nav img{
    position: absolute;
    left: 50px;
    cursor: pointer;
}
.nav_links a{
    margin: 10px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.25rem;
}
.mini_menu{
    width: 98%;
    background-color: #fff;
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
    overflow: hidden;
    min-height: 300px;
    height: auto;
    position: fixed;
    top: 70px;
    z-index: 1000000;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.menu_close{
    animation: close 1s ease 0s 1 normal forwards;
}
@keyframes close {
	0% {
		opacity: 1;
        display: flex;
	}

	100% {
		opacity: 0;
        display: none;
	}
}
.menu_open{
    animation: open 1s ease 0s 1 normal forwards;
}
@keyframes open {
	0% {
		opacity: 0;
        display: flex;
	}

	100% {
		opacity: 1;
        display: flex;
	}
}
.menu_closed{
    display: none;
}
.mini_menu a{
    padding: 10px 20px;
    margin: 5px;
    width: 90%;
    text-align: center;
    background-color: aliceblue;
    font-size: 1.5rem;
}
.mini_menu_active{
    background-color: rgb(147, 226, 254); 
}