body {
    font-family: Arial, sans-serif;
    line-height: normal;
    margin: 0;
    padding: 0;
}
header {
    background-image: url(139811120921585119544374.jpg);
    height: 400px;
    color: aliceblue;
    padding: 2px;
    text-align: right;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
h1 {
    font-size: 5em;
    text-align: center;
}

p {
    font-size: 2ch;
    padding-top: 5em;
    padding-right: 1em;
    text-align: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: right;
    background-color: rgb(250, 250, 250);
}
nav ul li a {
    color: rgb(255, 0, 0);
    text-decoration: none;
    padding: 10px;
}
nav ul li a :hover {
    background: rgb(74, 1, 245);
}
@keyframes fadeIn {
    from {
        opecity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 2;
        transform: translateY(0);
    }
}
section {
    animation: fadeIn 1s ease;
}
h2 {
    text-align: right;
    padding-right: 1em;
}
p {
    font-size: 2ch;
    font-style: italic;
    padding-right: 1rem;
    padding-top: 1em;
}
img {
    width: 350px;
    height: 400px;
    border-radius: 30px;
    float: left;
}
@keyframes fadeIn {
    from {
        opecity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
section {
    animation: fadeIn 1s ease;
}
em {
    text-align: right;
    font-size: 3ch;
    font-style: italic;
}
h3 {
    font-size: 2em;
    text-align: right;
}

footer {
    text-align: center;
    font-size: 3ch;
    background-image: url(aaaa.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 300px;
    color: rgb(23, 28, 32);
    padding: 1rem 0;
}