@import url(https://fonts.googleapis.com/css?family=Poppins);

body {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
	flex-direction: column;
    font-size: 5rem;
    overflow: hidden;
    background-color: #f6f5f4;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-back {
    line-height: 1;
    overflow: hidden;
    position: absolute;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    left: 20px;
    bottom: 20px;
    width: auto;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 999px;
    background: #d2d2d78f;
    font-family: 'Poppins', serif;
    color: #5f5f5f;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    
}

.page-back img {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.page-back::after {
    content: attr(aria-label);
    display: inline-block;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    margin-left: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease;
}

.page-back:hover::after,
.page-back:focus-visible::after {
    opacity: 1;
    max-width: 30ch;
    margin-left: 10px;
}

.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    z-index: 9999;
}
