.pdf-container {
    width: 100%;
    height: calc(100vw * 1.414); /* Aspect ratio for A4 (1:1.414) */
    max-height: 100vh; /* Optional: Limits height to viewport */
    overflow: hidden;
}

.link-container{
    display: flex;
    flex-direction: column;
}

.topPicture{
    height: calc(50svh - var(--navbar-height));
    background-color: var(--image-background-color);
    display: flex;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    box-shadow: var(--box-shadow);
    width: 100%;
    background-image: url('/images/scroll-img/legal-background.PNG');
}

.topPicture h2{
    color: white;
}
.topPicture p{
    color: white;  
}
.text-box-tint{
    display: flex;
    background: var(--text-box-color);
}