body {
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
    background-color: lightpink;
    display: block;   /* <-- CHANGE THIS */
    color: hotpink;
    width: 1600px;
}
/* HEADER */
header {
    background-color: greenyellow;
    border-radius:90%;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 190px;
    padding: 4px;
    margin: 35px;
}

/* NAV */
nav {
    width: 90%;
    max-width: 800px;
    margin-bottom: 55px;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    flex: 1;
}

nav ul li a {
    display: block;
    text-align: center;
    padding: 6px;
    color: greenyellow;
    text-decoration: none;
}

nav ul li a:hover {
    background: deeppink;
}

header,
nav {
    margin-left: auto;
    margin-right: auto;
}

/* MAIN LAYOUT */

.container {
    display: flex;
    gap: 0px;

    width: 100%;
    max-width: 1400px;

    margin: 0 auto;   /* centers it */
    justify-content: center;
    align-items: flex-start;

    box-sizing: border-box;
}
.left-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.top-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* RIGHT BAR */

.rightbar {
    width: 190px;
    position: sticky;
    top: 10px;
    align-self: flex-start;
    padding: 10px;

}

.rightbar img {
    width: 100%;
    height: auto;
    margin-top: 10px;
    object-fit: cover;
}

.rightbar ul {
    list-style: none;
    padding: 0;
}

.rightbar li {
    margin-bottom: 20px;
}

.rightbar a {
    color: greenyellow;
    text-decoration:underline
}

/* MAIN */

main {
    width: 550px;
    height: 300px;
    padding: 15px;
    overflow-y: auto;
}

main p {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: white;
}

main img {
    width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
    object-fit: cover;
    transition: transform 0.2s ease;
}

/* ASIDE */

aside {
    max-width: 10;
    width: 21%;
    min-height: 750px;
    padding: 20px;
    overflow-y: auto;
    color:  white;
    text-decoration:underline


}

aside img {
    width: 100%;
    height: auto;
    display: block;
}




/* SCROLLBARS */

main::-webkit-scrollbar,
aside::-webkit-scrollbar {
    width: 6px;
}

main::-webkit-scrollbar-track,
aside::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

main::-webkit-scrollbar-thumb,
aside::-webkit-scrollbar-thumb {
    background: lawngreen;
    border-radius: 20px;
    box-shadow: 0 0 6px lawngreen;
}

main::-webkit-scrollbar-thumb:hover,
aside::-webkit-scrollbar-thumb:hover {
    background: white;
}

main,
aside {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

main::-webkit-scrollbar,
aside::-webkit-scrollbar {
    display: none;
}
/* HOVER EFFECTS */

main,
aside,
.rightbar {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

main:hover,
aside:hover,
.rightbar:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
}

/* FADE IN */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main,
aside,
.rightbar {
    animation: fadeIn 0.6s ease;
}

/* MARK STYLE */

mark1 {
    background-color: greenyellow;
    border-radius: 70%;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 170px;
    padding: 4px;
}

mark2 {
    background-color: greenyellow;
    border: 10px;
    border: 2.5px deeppink dashed;
    display: flex;
    justify-content: center;
    width: 70%;
    max-width: 300px;
    padding: 5px;
    align-items: center;
}

:root {
    --accent: lawngreen;
}

/* FOOTER */

footer {
    margin-top: 20px;
    width: 90%;
    text-align: center;
    border: 2px inset grey;
}



/* AESTHETIC WALL */

.aesthetic-wall {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 830px;
 column-count: 4;      /* try 3, 4, or 5 */
    column-gap: 15px;
}

/* SCROLLBARS */

main::-webkit-scrollbar,
aside::-webkit-scrollbar {
    width: 6px;
}

main::-webkit-scrollbar-track,
aside::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

main::-webkit-scrollbar-thumb,
aside::-webkit-scrollbar-thumb {
    background: lawngreen;
    border-radius: 20px;
    box-shadow:  lawngreen;
}

main::-webkit-scrollbar-thumb:hover,
aside::-webkit-scrollbar-thumb:hover {
    background: white;
}

main,
aside {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

main::-webkit-scrollbar,
aside::-webkit-scrollbar {
    display: none;
}
/* HOVER EFFECTS */

main,
aside,
.rightbar {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

main:hover,
aside:hover,
.rightbar:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px lawngreen;
}

/* FADE IN */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main,
aside,
.rightbar {
    animation: fadeIn 0.6s ease;
}

/* MARK STYLE */



:root {
    --accent: deeppink;
}

/* FOOTER */

footer {
    margin-top: 20px;
    width: 90%;
    text-align: center;
    border: 2px inset grey;
}