body {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('media/page3/bg.png');
    background-size: cover;
    width: 100%;
    height: 100vh;
    margin: 0;
    position: relative;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Change from absolute to relative */
    width: 1100px; /* Match the width of #page1 */
    height: auto;
    margin: auto;
}

#page3 {
    position: relative; /* Allows absolute children */
    display: block;
}

/* Position relative to page1 */
#bookmark {
    position: absolute;
    z-index: 3;
    top: 10%;
    left: 55%;
    cursor: pointer; /* Indicates it's clickable */
}

#text {
    position: absolute;
    color: #0006ac;
    font-size: 8px;
    font-family: monospace, sans-serif;
    text-align: center;
    z-index:2;
    width:100px;
    line-height: 1.37;
    top: 46.3%;
    left:62%; 
}

a:link {
    color: #0006ac;
}
a:visited {
    color: #0006ac;
}
a:hover, a:active { 
    background-color: rgb(151, 191, 255);
}  
