body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background:linear-gradient(#007BFF,#4072cf);
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

main {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.content-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-detail img {
    width: auto;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.content-info {
    text-align: left;
    width: 100%;
    max-width: 700px;
}

.content-info h2 {
    margin-top: 0;
    font-size: 2em;
    font-weight: bold;
}

.content-info table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #ffff;
    font-size: 1.1em;
}

.content-info th, .content-info td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    font-size: 1.1em;
}

.content-info th {
    background-color: #f4f4f4;
    table-layout: auto;
    background-color: #ffff;
}

.content-info img {
width: 150px;
height: auto;
margin-bottom: 0px

}
.download-button {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    background-color: #0bb828;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.back-button {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    background-color: #6c7575;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.download-button:hover, .back-button:hover {
    background-color: #0056b3;
}

main p{
    font-size: 1.1em;
}

footer {
    background:linear-gradient(#007BFF,#4072cf);
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 1.5em;
    }
}