body {
    padding: 20px;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

/* Responsive PDF container with increased height */
object {
    width: 95%;
    height: 650px; /* Increased height */
}

/* Media Query for small screens */
@media only screen and (max-width: 200px) {
    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    object {
        width: 180px;
        height: 350px; /* Adjusted height for smaller screens */
    }
}

.animated-anchor {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.animated-anchor:hover {
    background-color: #0056b3;
}

  /* Responsive to 200px width */
@media (max-width: 200px) {
    .animated-anchor {
    font-size: 12px;
    padding: 5px 10px;
    }
}