html, body {
    height: 100%;
    margin: 0;
}

body {
    background: url('Images/Background.png') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.container {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header-gallery-download-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.card-creator {
    font-size: 1.5rem;
    color: #c5c5c5;
    margin: 0.5rem 0;
    outline: none;
}

.card-creator:focus, .card-creator:active {
    outline: none;
}

.header-download {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    flex: 1;
}

.header {
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    flex: 1;
}

.header img {
    max-width: 100px;
    border-radius: 50%;
}

.header h1 {
    font-size: 18px;
    margin-top: 10px;
}

.download-section {
    background: linear-gradient(to bottom, #8f1212, #520b0b);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-button {
    background-color: #9c0000;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    max-width: 100px;
    margin: 0 auto;
}

.download-button:hover {
    background-color: #666;
}

.gallery {
    flex: 2;
    background: linear-gradient(to bottom, #8f1212, #520b0b);
    border-radius: 8px;
    padding: 15px;
}

.gallery h2 {
    font-size: 20px;
    margin-top: 0;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    border-radius: 8px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #ffffff;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.description-row {
    margin-top: 20px;
}

.description-section {
    background: linear-gradient(to bottom, #8f1212, #520b0b);
    border-radius: 8px;
    padding: 15px;
}

.section h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.section p {
    margin: 0;
}

.sub-section {
    background: linear-gradient(to bottom, #4d0606, #4d0606);
    padding: 10px;
    border-radius: 5px;
}

header {
    background-color: #520b0b;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 20px;
}

.logo img {
    width: 300px;
    height: auto;
}