#id1{
    padding: 3rem;
    text-align: justify;
    padding-top: 10rem;
}

#download_section {
    display: flex; /* Enables flexbox in the container */
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
}

#download_btn {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    display: inline-block;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#download_btn:hover {
    background-color: #0056b3;
}