#theme {
    background-color: rgba(0, 0, 0, 0.6);
}
#theme .theme-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#theme .theme-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: fit-content;
    background-color: rgba(255, 255, 255, 0.85);
    padding-bottom: 20px;
    filter: drop-shadow(4px 4px 6px rgba(255, 255, 255, 0.5));
}
#theme img {
    max-width: 600px;
    margin: 20px 0;
}
#theme p {
    font-family: var(--FontIII);
    color: #000000;
    font-size: 25px;
    margin: 80px 30px;
}
.wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s ease;
}
.wrapper.show {
    opacity: 1;
    transform: translateY(0);
}
@media screen and (max-width: 670px) {
    #theme img {
        max-width: 300px;
    }
    #theme p {
        font-size: 16px;
        margin: 60px 5px;
    }
}