@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&display=swap');

body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(45deg, #00BFFF, #FF69B4);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.powerpoint-slide {
    background-color: #FFFFFF;
    border: 10px solid #FFD700;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
    width: 90%;
    max-width: 800px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    margin: 20px auto;
}

.slide-header {
    background-color: #FF00FF;
    padding: 10px;
    margin: -15px -15px 15px -15px;
    text-align: center;
}

.title-text {
    font-size: 36px;
    color: #FFFF00;
    text-shadow: 2px 2px 0 #0000FF, 4px 4px 0 #FF0000;
    margin: 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.content-box {
    background-color: rgba(0, 255, 255, 0.3);
    border: 3px solid #00FF00;
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 28px;
    color: #FF6600;
    text-shadow: 1px 1px 0 #FFFF00;
    margin-top: 0;
}

.bullet-list {
    list-style-type: none;
    padding: 0;
}

.list-item {
    background-color: rgba(255, 255, 0, 0.3);
    border: 2px solid #FF00FF;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.item-title {
    font-size: 22px;
    color: #0000FF;
    margin: 0 0 5px 0;
}

.item-description {
    font-size: 16px;
    color: #000000;
    margin: 0;
}

.clipart {
    font-size: 30px;
    position: absolute;
    top: -5px;
    right: -5px;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.boring-text {
    font-size: 20px;
    color: #808080;
    text-align: center;
    font-style: italic;
}

.footer {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
}

.scrolling-text {
    font-size: 18px;
    color: #FF0000;
    text-shadow: 1px 1px 0 #FFFFFF;
}

/* Mobile-specific adjustments */
@media screen and (max-width: 480px) {
    .powerpoint-slide {
        padding: 10px;
        border-width: 5px;
    }

    .slide-header {
        margin: -10px -10px 10px -10px;
    }

    .title-text {
        font-size: 28px;
        text-shadow: 1px 1px 0 #0000FF, 2px 2px 0 #FF0000;
    }

    .subtitle {
        font-size: 24px;
    }

    .item-title {
        font-size: 20px;
    }

    .item-description {
        font-size: 14px;
    }

    .clipart {
        font-size: 24px;
        top: -3px;
        right: -3px;
    }

    .boring-text {
        font-size: 18px;
    }

    .scrolling-text {
        font-size: 14px;
    }
}