/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
/* Basic Style */
header {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 50px;
    text-align: center;
}
/* Styled Section */
.styled {
    font-family: 'Poppins', sans-serif;
    background: #663399; /*purple*/;
    color: white;
    padding: 50px;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin: 50px auto;
    max-width: 550px;
}
.styled h2 {
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 2px 2px 5px rgba(0,0,0,1);
}
/* Image Transformation */
/**turn image upside-down while enlarging**/
.image-effect {
    width: 200px;
    margin-top: 80px;
    margin-left: 50px;
    border: 4px solid white;
    border-radius: 10px;
    transition: transform 0.5s, filter 0.5s;
}
.image-effect:hover {
    transform: scale(1.5) rotate(180deg);
    filter: brightness(1.2);
}
/* Animation */
/**move side-to-side while changing colors**/
@keyframes moveBox {
    0% { transform: translateX(0); background-color: black; }
    50% { transform: translateX(100px); background-color: #de8333; } /*orange*/
    100% { transform: translateX(0); background-color: black; }
}
.animation-box {
    width: 160px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 10px;
    margin-top: 100px;
    animation: moveBox 2s infinite ease-in-out;
}
footer {
    text-align: center;
    border-top: 1px solid gray;
    margin-top: 50px;
    padding-top: 10px;
    color: gray;
    font-size: 0.9rem;
}