/* ---------- GENERAL ---------- */

/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general layout styles */
body {
    font-family: Arial, sans-serif;
    background-color: #9660f2;
    color: #333;
    text-align: center;
}

header {
    background-color: #0099FF;
    color: white;
    padding: 25px 0;
}

h1 {
    font-size: 3rem;
}

section {
    margin: 40px 0;
}

video {
    margin: 20px 0;
}

h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

footer {
    background-color: #222;
    color: white;
    padding: 10px;
    font-size: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* CSS Transitions */
.audio audio {
    margin: 20px;
    transition: transform 0.3s ease;
}

.audio audio:hover {
    transform: scale(1.2);
}

/* CSS Transformations */
.animated-box {
    background-color: #00C9FF;
    color: rgb(208, 210, 244);
    padding: 20px;
    font-size: 1.2rem;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.5s ease, background-color 0.3s ease;
}

/* Transformation effects on hover */
.animated-box:hover {
    transform: scale(1.1) rotate(360 deg);
    background-color: #FF5733;
}

/* Transformation effects on hover */
.video-section {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.video-section:hover {
    transform: skew(-5deg) scale(1.1);
    background-color: #e0e0e0;
}

/* Transformation effects on hover */
.media-content {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.media-content:hover {
    transform: perspective(500px) rotateX(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/*CSS Transitions */
button, .watch-button {
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.animated-box:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #FF5733;
}

/*Transition effects on hover */
button:hover, .watch-button:hover {
    background-color: #007ACC;
    transform: scale(1.05);
}

/*Transition effects on hover */
.interactive-item {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.interactive-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Transition effects on hover */
.audio-container:hover, .video-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #0099FF;
}

/*CSS Animations */
button, .watch-button {
    transition: background-color 0.1s ease, transform 0.1s ease;
}

/* Animation Keyframes */
button:hover, .watch-button:hover {
    background-color: #007ACC;
    transform: scale(1.05);
}

/*Animation Keyframes */
.interactive-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Animation Keyframes */
.audio audio {
    animation: colorChange 2s infinite;
}


/* CSS @keyframes Animation */
@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 1;
    }

    100% {
        transform: translateX(110);
        opacity: 2;
    }
}

.animated-box {
    animation: slideIn 1s ease-out;
}

/* Bonus animation */
@keyframes colorChange {
    0% {
        background-color: #00C9FF;
    }

    50% {
        background-color: #FF5733;
    }

    100% {
        background-color: #00C9FF;
    }
}

.audio audio {
    animation: colorChange 2s infinite;
}
section {
    padding: 40px 20px;
    margin: 20px auto;
    background: transparent;
    border: none;
    border-radius: 10px;
    width: 80%;
}
.audio-container, .video-container {
    margin: 20px;
    display: inline-block;
    text-align: center;
    transition: transform 0.3s ease;
}
.audio-container:hover, .video-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #0099FF;
}
#interactive h2 {
    color: #333;
    font-size: 10px;
    margin-bottom: 20px;
}
.interactive-item {
    background-color: transparent;
    color: #333;
    padding: 20px;
    margin: 20px auto;
    width: 250px;
    border-radius: 10px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.interactive-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
button, .watch-button {
    background-color: #0099FF;
    color: white;
    padding: 15px 30px;
    font-size: 30px;
    margin: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
button:hover, .watch-button:hover {
    background-color: #007ACC;
    transform: scale(1.05);
}
    