/* STRUCTURAL */

body {
    background: orange;
}

    header {
        text-align: center;
        margin-top: 10rem;
    }

.sketchbooks {
    display: flex;
    padding: 5rem;
    width: 40%;
    margin: auto;
    gap: 2rem;
}

    .sketchbooks img {
        height: 12rem;
        transition: transform 0.5s ease;
    }

nav {
    display: flex;
    flex-direction: row;
    margin: 0 0 0 0;
    gap: 2rem;
    justify-content: center;

}

nav ul {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    list-style: none;
}

    nav li {
        border: 1px solid #9b0000;
        border-radius: 5px;
        padding: .5rem;
    }

    nav a {
        color: #9b0000;
        text-decoration: none;
    }

        nav a:visited {
            color: #9b0000;
        }
/* STYLE */
p {
    text-align: center;
}

.sketchbooks img:hover {
    transform: scale(1.2);
}

.border {
    border: 1px solid maroon;
    border-radius: 10px;
}