:root {
    --sunsetwavy: url('/assets/backgrounds/sunsetwavy.png');
    --plaidgreen: url('/assets/backgrounds/plaidgreen.png');
    --white: white;
    --orange: #f76801;
    --darkgreen: #0f4700;
    --brightgreen: #14ba3a;
    --seafoam: #93E9BE;
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'aqua_smileregular';
    src: url('/fonts/aqua_smile/aqua_smile-webfont.woff2') format('woff2'),
         url('/fonts/aqua_smile/aqua_smile-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    background-image: var(--sunsetwavy);
    margin: 0;
    padding: 5em;
    font-family: aqua_smileregular, system-ui, sans-serif;
}

.container {
    margin: 0 auto;
    padding: 2em;
    max-width: 850px;
    max-height: 200%;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--darkgreen);
    border-radius: .5em;
    background-image: var(--plaidgreen);
}

header {
    background-color: var(--white);
    border: 4px solid var(--orange);
    color: var(--brightgreen);
    text-align: center;
    padding: 1em;
    margin-bottom: 1em;
}

h1 {
    font-size: 5.5em;
    margin: 0;
    padding-top: 10px;
}

nav {
    background-color: var(--orange);
    border: 4px solid white;
    color: white;
    text-align: center;
    justify-content: space-between;
    margin-bottom: 1em;
}

nav > ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

nav li:not(:last-child) {
    border-right: 4px solid white;
    padding: 10px 95px 10px 20px;
}

nav li:last-child {
    padding: 10px;
}

nav li a {
    color: white;
    text-decoration: none;
}

main {
    background-color: var(--orange);
    color: var(--white);
    padding: .5em 1.5em;
    line-height: 1em;
    margin-bottom: 1em;
}

.banners {
    background-color: var(--orange);
    padding: 1.5em 1.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5em;
}

.banners a img {
    width: 80px;
    height: 50px;
}

.socials {
    text-align: center;
}

.socials img {
    margin-top: -1.5em;
    width: 60px;
    height: 60px;
}

/* Contact */

.contact {
    text-align: center;
}

.contact ul {
    text-align: left;
    list-style-type: none;
}

.contact ul li img {
    width: 32px;
    display: inline-block;
    vertical-align: -10px;
}

.contact img {
    max-width: 500px;
}

/* Contact */

/* Credits */

.credits {
    padding: 2em 4em 4em;
    text-align: center;
}

.credits p {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 700;
    text-align: left;
}

.credits a {
    color: var(--white);
    text-decoration: none;
}

.credits a:hover {
    color: var(--seafoam);
}

/* Credits */

/* Art Info */

.art {
    color: var(--white);
    background-color: var(--orange);
    padding: 1em;
    text-align: center;
}

.art:not(:last-child) {
    margin-bottom: 1em;
}

.commissions {
    justify-content: space-evenly;
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
}

.commissions img {
    max-width: 400px;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.projects img {
    max-height: 350px;
}

.banner_ads {
    color: var(--white);
    background-color: var(--orange);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.banner_ads img {
    max-height: 120px;
}

/* Art Info */

/* Phrase of the Day */

.potd_container {
    margin: 0 auto;
    max-width: 700px;
    max-height: 50%;
    border: 5px solid var(--darkgreen);
    border-radius: .5em;
    background-image: var(--plaidgreen);
}

.potd_title {
    background-color: var(--orange);
    padding: 1em 2em;
    color: var(--white);
}

.potd_main {
    padding: 2em;
}

.potd_nav {
    margin-bottom: 6em;
}

.charlie_potd {
    background-image: url('/assets/charlie.png');
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 800px;
    height: 500px;
}

.charlie_potd p {
    margin-left: 55%;
    padding-top: 2em;
    line-height: 1.2em;
}
/* Phrase of the Day */
/* Collections */

.collections {
    color: var(--white);
    background-color: var(--orange);
    padding: 1em;
    text-align: center;
}

.collection {
    color: var(--white);
    background-color: var(--orange);
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    justify-content: center;
    gap: 0.5em;
}

.collection img {
    max-height: 200px;
}

#gamenp {
  border: 5px solid var(--red);
}
/* Collections */

/* Floating Images / Text */

#float_charlie {
    width: 200px;
    position: absolute;
    margin-left: 185px;
    margin-top: -180px;
}

#float_bb {
    width: 180px;
    position: absolute;
    margin-left: -400px;
    margin-top: -130px;
}

#float_neocities {
    position: absolute;
    font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
    margin-left: 355px;
    margin-top: 5px;
    font-weight: 700;
}

#float_succ {
    position: absolute;
    width: 60px;
    margin-top: -100px;
    margin-left: -20px;
}

#float_cact {
    position: absolute;
    width: 55px;
    margin-top: -120px;
    margin-left: 730px;
}

#float_hop {
    max-width: 180px;
    position: absolute;
    margin-left: 340px;
    margin-top: 450px;
}

/* Floating Images / Text */