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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, rgba(30, 87, 153, 0.8), rgba(125, 185, 232, 0.6), rgba(255, 213, 79, 0.5));
    background-attachment: fixed;
    color: #333;
}

header {
    background: rgba(0, 63, 135, 0.85); /* Semi-transparent Ukrainian blue */
    color: white;
    text-align: center;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.5em;
    font-style: italic;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.hero img {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

footer {
    color: black;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 1em;
}
