* {
    margin: 0;
    padding: 0;
    cursor: default;
}
body {
    
}

header {
    background-image: url(images/Charlotte_etherane_art_march_2022.jpg);
    background-size: 100%;
    background-attachment: fixed;
    height: 200px;
}

.container {
    width: 1100px;
    margin: 0 auto;
}

/* NAV */

nav {
    margin: 20px 0;
    text-align: center;
}
nav a:hover {
    cursor: pointer;
}
nav a:not(:last-child)::after {
    content: " • ";
    margin: 0 5px;
    font-size: 13px;
}

/* MAIN */

main {
    height: 500px;
    display: flex;
    column-gap: 20px;
}
main p {
    margin-bottom: 10px;
}
main img {
    width: 100%;
}
main #left {
    float: left;
    margin-right: 10px;
}
main #right {
    float: right;
    margin-left: 10px;
}

/* LEFT */
/* RIGHT */

main .right img {
    margin-bottom: 10px;
}

/* END */

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
  background: white;
}
::-webkit-scrollbar-thumb {
    background-color: lightgray;
}