/* styles.css */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.image-container {
    position: relative; /* Set the container as relative */
    width: 100vw; /* Full viewport width */
    margin-bottom: 40px;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Scale the image to cover the container */
}

.button-container {
    position: relative; /* Set the container as relative */
    width: 100vw; /* Full viewport width */
    margin-bottom: 40px;
}

.download-button {
    display: block;
    background-color: #0074d9;
    color: #ffffff;
    margin: 20px auto;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

