* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
    color: #333;
    padding: 20px;
    line-height: 1.6;
}

header {
    background: linear-gradient(90deg, #4a00e0, #8e2de2);
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

main h2 {
    font-size: 1.8rem;
    color: #4a00e0;
    text-align: center;
    margin-bottom: 20px;
}

main section a{
    display: block;
    margin: 0 auto;
    width: fit-content;
    justify-content: center;
    text-decoration: none;
    color: #4a00e0;;
}

article {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 25px;
    padding: 15px;
    border-left: 4px solid #8e2de2;
    background: #f9f9f9;
    border-radius: 8px;
}

li p {
    font-weight: bold;
    color: #4a00e0;
    margin-bottom: 8px;
}

audio,
iframe {
    width: 100%;
    border-radius: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
}

footer ul.email{
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    list-style: none; 
    padding: 0;
    justify-content: center;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 60px;
}

footer ul li a {
    text-decoration: none;
}

a:focus,
audio:focus,
iframe:focus {
    outline: 3px solid #ffcc00;
    outline-offset: 4px;
}

@media (min-width: 768px) {
    main section {
        padding: 0 40px;
    }
    figure img {
        width: 300px;
    }
}