body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: linear-gradient(120deg, #55084f, #d524e8);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide {
    width: 80vw;
    background: #d1c1c18c;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    height: 80%;
    max-height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    padding-bottom: 64px;
}

#slideTitle {
    margin-top: 20px;
}

#slideImage {
    width: 60vw;
    max-height: 42vh;
    object-fit: cover;
    border-radius: 10px;
}

#slideDescription,
#slideAuthor,
#slideYear {
    margin: 10px 0;
    padding-left: 20px;
    padding-right: 20px;
}

#btnSubmit {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background: #000000;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}

#btnSubmit:hover {
    background: #ffffff;
    color: black;
}
