body {
    margin: 0;
    padding: 0;
    display: grid;
    place-items: center;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    max-width: 800px;
    width: 100%;
}

.photo img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.text {
    display: grid;
    grid-template-rows: max-content;
    grid-gap: 10px;
}

.title {
    font-size: 30px;
    display: block;
    font-weight: bold;
    margin-bottom: 10;
}

.subtitle {
    font-size: 12px;
    display: block;
    margin-top: -10px;
    margin-left: -15px;
}

.textbox {
    font-size: 16px;
    line-height: 1.1;
}

.download-button {
    font-family: 'Quicksand', sans-serif;
    padding: 10px 20px;
    width: 100%;
    height: 50px;
    font-size: 18px;
    background-color: #495525;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    background-image: linear-gradient(to top, #495525, #939e71);
}

.download-button a {
    color: white;
    /* Change color of links inside .download-button to white */
}

.download-button a:hover {
    text-decoration: underline;
    /* Add underline on hover */
    text-decoration-style: wavy;
}

.download-button:hover {
    background-color: #0056b3;
    background-image: linear-gradient(to top, #495525, #939e71);
}

.download-button2 {
    font-family: 'Quicksand', sans-serif;
    padding: 10px 20px;
    width: 100%;
    height: 50px;
    font-size: 18px;
    background-color: #495525;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    background-image: linear-gradient(to top, #495525, #939e71);
}

.download-button2:hover {
    background-color: #0056b3;
    background-image: linear-gradient(to top, #495525, #939e71);
}

/* Styles for the dropdown menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content2 {
    display: none;
    position: absolute;
    width: 90%;
    background-color: #939e71;
    min-width: 160px;
    z-index: 1;
    top: 100%;
    /* Position dropdown content below the button */
    left: 50%;
    /* Position dropdown content at the center horizontally */
    transform: translateX(-50%);
    /* Adjust to center the content */
    font-family: 'Quicksand', sans-serif;
    border-radius: 0;
    border: 1px solid #495525;
    background-image: linear-gradient(to top, #495525, #939e71);
}

.dropdown-content2 button {
    font-family: 'Quicksand', sans-serif;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background-color: transparent;
    width: 100%;
    text-align: left;
}

.dropdown-content2 button:hover {
    background-color: #495525;
    color: white;
}

/* Show the dropdown menu when hovering over the button */
.dropdown:hover .dropdown-content2 {
    display: block;
    color: white;
    /* Change the color of the link */
}

.dropdown-content2 .download-option a {
    color: white;
    /* Change the color of the link */
    text-decoration: none;
    /* Remove underline from the link */
}

.dropdown-content2 .download-option a:hover {
    color: white;
    /* Change the color of the link */
    text-decoration: underline;
    /* Add underline on hover */
    text-decoration-style: wavy;
}

.dropdown-content2 .download-option a:visited:hover {
    color: white;
    /* Change the color of the link */
    text-decoration: underline;
    /* Add underline on hover */
    text-decoration-style: wavy;
}


.slideshow {
    position: relative;
}

.slide {
    display: none;
}

.slide img {
    width: 10px;
    /* Set the width to fill the container */
    height: auto;
    /* Maintain aspect ratio */
}

.slide.show {
    display: block;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.photo2 {
    margin-bottom: -60px;
    /* Move down by 50px */
    margin-left: 396px;
    /* Move the element to the right by 20px */
}

.photo2 img {
    width: 380px;
    /* Set width to 390px */
}

.photo3 {
    margin-bottom: -40px;
    /* Move down by 50px */
}

.photo3 img {
    width: 15%;
    /* Set width to 390px */
}