.account_menu{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	margin:auto;
	width:fit-content;
}
grid_holder{
	display:grid;
}
grid_holder a{
	text-decoration:none;
	color:unset;
}
.account_menu > * {
    display: flex;
    justify-content: center;
    align-items: center;
    border: thin solid #67829e;
    background: #dbecfe;
    padding: 10px;
    position: relative;
    box-shadow: inset 2px 2px 7px rgb(255 255 255), inset -2px -2px 2px 1px rgb(0 0 0 / 25%);
}
.account_menu > *:hover{
	top:-2px;
    box-shadow: inset 2px 2px 7px rgb(255 255 255), inset -2px -2px 2px 1px rgb(0 0 0 / 25%), 0px 3px 3px 1px rgb(0 0 0 / 50%);
}
