body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.content {
    padding: 20px;
}

.page-link {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}