* {
    margin: 0;
    padding: 0;
}

nav {
    padding: 1rem;
    margin-bottom: 1rem;

    background-color: black;
}

nav ul {
    color: white;

    width: 100%;

    display: flex;
    flex-direction: row;

    justify-items: center;
    justify-content: space-evenly;

    list-style: none;
}

body {
    background-color: skyblue;
}

.welcomebanner {
    display: flex;
    flex-direction: column;

    align-items: center;
}

.welcomebanner img {
    width: 30%;
}

.portfolio {
    display: flex;
    flex-direction: column;

    gap: 2rem;
    margin-bottom: 1rem;
}

footer {
    padding: 1rem;

    display: flex;
    flex-direction: row;

    justify-content: center;

    background-color: black;
    color: white;
}