/* ==========================================
   Browser Default Section
   No styles are applied to the first section.
========================================== */

/* ==========================================
   Styled Section
========================================== */

.styled-section {
    background-color: pink;
    padding: 25px;
    margin-top: 30px;
    border: 3px solid black;
    text-align: center;
}

/* ==========================================
   Heading Styling
========================================== */

.styled-section h1 {
    color: blue;
    font-family: Georgia, serif;
    font-size: 38px;
    font-variant: small-caps;
}

/* ==========================================
   Paragraph Styling
========================================== */

.note {
    color: #b91c1c;
    background-color: #fef3c7;
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 22px;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
}

/* ==========================================
   Image Styling
========================================== */

.styled-section img {
    width: 300px;
    border: 6px solid #2563eb;
    border-radius: 20px;

    /* Transition */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* ==========================================
   Transform + Transition
========================================== */

.styled-section img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 10px 10px 20px blue;
}

/* ==========================================
   Animation
========================================== */

.styled-section {
    animation: fadeIn 5s ease-in-out;
}

@keyframes fadeIn {

    from {
        opacity: 2;
        transform: translateY(40px);
    }

    to {
        opacity: 0;
        transform: translateY(0);
    }

}