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

body {
    background-color: aquamarine;
    font-family: Arial, sans-serif; /* Add this line */
}

html {
    border: 15px solid rgb(255, 9, 9);
    height: 100vh;
    align-content: center;
}

body {

    border: 1px solid black;
    margin: auto;
    max-width: 600px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

header {
    border: 1px solid #494cfc;
    border-radius: 10px;
    background-color: #eef0ff;

    height: 35px;

    color: #494cfc;

    display: flex;

    nav {
        align-content: center;
    }

    /* Header navigation */
    nav ul {
        display: flex;
        align-items: center; /* Centers the items vertically */
        justify-content: center;

        list-style: none;

        li {
            padding-left: 5px;
            padding-right: 5px;
        }

        a {
            text-decoration: none;
            color: black;
        }
    }
}






img {
    height: 250px;
}