        body {
            background: linear-gradient(#fff8f1, #ffe0cc);
            font-family: 'Segoe UI';
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
        }
        
        header {
            max-height: inherit;
            text-align: center;
            background-color: #fff3e0;
            border-bottom: 4px solid #cf5c5c;
            padding-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        header img {
            width: 100%;
            max-height: 460;
            object-fit: cover;
            border-radius: 0 0 20px 20px;
        }
        
        h1 {
            margin-top: 20px;
            font-family: 'Segoe UI';
            font-size: 3rem;
            font-weight: 700;
            color: #d94343;
            text-shadow: 1px 1px 2px #f0c2b1;
        }
        
        nav ul {
            list-style: none;
            padding: 0;
            margin: 20px 0 10px 0;
            display: flex;
            justify-content: center;
        }
        
        nav a {
            text-decoration: none;
            color: #d94343;
            font-weight: 600;
            padding: 10px 16px;
            border-radius: 8px;
            transition: background-color 0.3 ease, color 0.3 ease;
        }
        
        nav a:hover,
        nav .current {
        background-color: #d94343;
        color: #fff;
}
        
        main {
            padding: 50px 30px;
            font-family: 'Segoe UI';
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        article {
            background-color: #ffffff;
            font-family: 'Segoe UI';
            padding: 25px;
            margin: 10px;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            flex: 1 1 300px;
            transition: transform 0.3 ease, box-shadow 0.3 ease;
        }
        
article:hover {
    transform: translate(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

        article h2 {
            color: #c02929;
            font-family: 'Segoe UI';
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        article h3 {
            font-size: 1.2rem;
            font-family: 'Segoe UI';
            color: #777;
            margin-top: -10px;
        }
        
        figure {
            width: 100%;
            max-width: 500px;
            margin: 0 auto 20px;
            border: 3px solid #d94343;
            border-radius: 16px;
            overflow: hidden;
        }
        
        figure img {
            width: 100%;
            display: block;
            height: auto;
            transition: transform 0.3 ease;
        }
        
        figcaption {
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
            color: #603a3a;
            padding: 10px;
        }
        
        p {
            color: #444;
            margin-bottom: 1em;
            font-size: 1.05rem;
        }
        
        aside {
            background-color: #fff8ed;
            padding: 30px;
            border-top: 2px dashed #d94343;
            border-bottom: 2px dashed #d94343;
            text-align: center;
        }

aside h2 {
    color:c02929;
}
        
        .contact img {
            margin-top: 10px;
            border-radius: 50%;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            background-color: #ffe0cc;
            font-size: 0.9rem;
            color: #555;
            border-top: 2px solid indianred;
        }
        
        .meme {
            text-align: center;
            margin: 30px 0;
        }
        
        .meme img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }

section:hover {
    transform: translate(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
    
.contact {
    background-color: #ffffff;
    padding: 25px;
    margin: 10px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 20px 500px;
}

nav a:hover {
    transform: scale(1.02);
}