.page {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 130px 1fr min-content;
    min-height: 100vh;
}

.page-tail {
    grid-column: 1 / span 3;
    display: flex;
    background-color: var(--bg-color2);
    justify-content: center;
}
.page-head {
    grid-column: 1 / span 3;
}
.page-head_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color2);
    padding-inline: 100px;
}

.page-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

.page-nav .page-link {
    display: block;
    color: black;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.page-nav .page-link:hover {
    transform: scale(1.2);
    text-shadow: 2px 2px 3px grey;
}

.page-main {
    grid-column: 2;
    grid-row: 2;
}

.page-tail hr {
    color: black;
    width: 80%;
    margin-inline: auto;
}

.page-logo {
    font-size: 3rem;
    font-weight: 900;
    perspective: 800px;
    align-self: center;
    text-align: center;
    transform: rotateZ(-3.5deg);
}

.user-access {
    position: relative;
    cursor: pointer;

    .greet-user {
        text-align: center;
    }
}

.user-access_links {
    width: 100%;
    display: none;
    position: absolute;
    background-color: var(--bg-color2);
    padding: 10px;
    top: 100%;
    box-shadow: 1px 1px 3px black;
    a {
        display: block;
    }
}

.user-access:hover > .user-access_links {
    display: initial;
}
