html {
    overflow-x: hidden;
    scroll-padding-top: 80px;
}

@font-face {
    font-family: 'Civette';
    src: url('fonts/Civette-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Civette';
    src: url('fonts/Civette-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

/* body and font styles */
body {
    position: relative;
    padding-top: 80px;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    font-family: 'Civette';
    background-color: black;
    cursor: url('graphics/glovecursor_2x.png'), auto;
}

/* hide scrollbar for firefox */
html, body {
    scrollbar-width: none;
}

/* hide scrollbar for chrome, safari, and opera */
body::-webkit-scrollbar {
    display: none;
}

/* hiding the scrollbar for other browsers */
html, body {
  -ms-overflow-style: none; /* ie and edge */
  overflow: -moz-scrollbars-none; /* older firefox */
}

/* header styles */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    width: 100%;
    height: auto;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.logo {
    margin-right: 35px;
}

header h1 {
    font-family: 'Civette';
    font-size: 3.5rem;
    color: #f6ced7;
    margin: 0;
    margin-right: 25px;
}

header nav a {
    color: #FDEDF0;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 5px 10px;
}

header nav a:hover {
    color: #dae3ec;
    cursor: url('graphics/teardropcursor_2x.png'), auto;
}

header nav a:active {
    color: #dae3ec;
}

/* Section styles */
section {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: transparent;
}

section#top {
    background-image: url('graphics/y2kluckycharmsbackground_2x.png');
    height: 100vh;
}

#banner {
    background-image: url('graphics/promotional_banner.png');
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    z-index: 2;
}

#caption {
    background-image: url('graphics/cloud_bubble1.png');
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    z-index: 3;
    animation: floating 1.2s alternate infinite, backgroundChange 5s infinite alternate;
}

#caption:hover {
    cursor: url('graphics/teardropcursor_2x.png'), auto;
}

@keyframes floating {
    0% {
        transform: translateY(1%);
    }
    100% {
        transform: translateY(-1%);
    }
}

@keyframes backgroundChange {
    0% {
        background-image: url('graphics/cloud_bubble1.png');
    }
    50% {
        background-image: url('graphics/cloud_bubble1.png');
    }
    100% {
        background-image: url('graphics/cloud_bubble2.png');
    }
}

section#news {
    background-color: transparent;
    background-image: url('graphics/teddybackground_2x.png');
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px;
    background-color: transparent;
    padding: 10px;
    margin-bottom: 10px;
}

.grid-container > div {
    background-color: transparent;
    padding: 10px 10px;
}

.item1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}

.item2 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

section#socials {
    background-color: transparent;
    background-image: url('graphics/teapartybackground_2x.png');
}

.grid-container2 {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
    background-color: transparent;
    padding: 10px;
    margin-bottom: 10px;
}

.grid-container2 > div {
    background-color: transparent;
    padding: 10px 10px;
}

.grid-container2 a {
    color: #f6ced7;
    text-decoration: none;
}

.grid-container2 a:hover {
    color: #dae3ec;
    cursor: url('graphics/teardropcursor_2x.png'), auto;
}

.grid-container2 a:active {
    color: #dae3ec;
}

.social1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}

.social2 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.social3 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
}

.social4 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}

.social5 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 6;
}

.social6 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 6;
}

.social7 {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 6;
}

.social8 {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 6;
}

section#about {
    background-color: transparent;
    background-image: url('graphics/y2kluckycharmsbackground_2x.png');
}

.image {
    display: block;
    margin: auto;
}

.chibi-wrapper {
    position: relative;
    margin: 0px auto;
    width: fit-content;
    height: 250px;
}

.chibis {
    display: block;
    height: 250px;
    width: auto;
}

.chibis-heart {
    position: absolute;
    top: 0;
    left: 2%;
    margin: auto;
    z-index: 2;
    background-image: url('graphics/devil_angel_chibis(pink_heart).png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 250px;
    width: 576.917px;
    animation: bouncing 1.2s alternate infinite, colorChange 5s infinite alternate;
}

@keyframes bouncing {
    0% {
        transform: translateY(1%);
    }
    100% {
        transform: translateY(-1%);
    }
}

@keyframes colorChange {
    0% {
        background-image: url('graphics/devil_angel_chibis(pink_heart).png');
    }
    25% {
        background-image: url('graphics/devil_angel_chibis(pink_heart).png');
    }
    50% {
        background-image: url('graphics/devil_angel_chibis(pink_heart).png');
    }
    75% {
        background-image: url('graphics/devil_angel_chibis(red_heart).png');
    }
    100% {
        background-image: url('graphics/devil_angel_chibis(red_heart).png');
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section h2 {
    font-family: 'Civette';
    font-size: 3rem;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 15px;
    color: #f6ced7;
    animation: fadeIn 1.2s ease-in-out;
}

.content-container {
    background-color: transparent;
    max-width: 800px;
    margin: 0px auto;
}

.content-container p,
.content-container ul {
    font-size: 1.3rem;
    color: #FDEDF0;
    text-align: center;
    line-height: 1.7;
}

.u01 {
    background: url(graphics/heartup_2x.png) repeat-x;
    height: 30px;
    margin: 0 30px;
}

.s01 {
    background: url(graphics/heartdown_2x.png) repeat-x;
    height: 30px;
    margin: 0 30px;
}

.box-top {
    background-image: url(graphics/heartupperleftcorner_2x.png), url(graphics/heartupperrightcorner_2x.png);
    background-position: top left, top right;
    background-repeat: no-repeat, no-repeat;
    height: 30px;
}

.box-center {
    background-image: url(graphics/heartright_2x.png), url(graphics/heartleft_2x.png);
    background-position: top right, top left;
    background-repeat: repeat-y, repeat-y;
}

.box-inner {
    background: black;
    margin: 0 30px;
}

.box-bottom {
    background-image: url(graphics/heartlowerleftcorner_2x.png), url(graphics/heartlowerrightcorner_2x.png);
    background-position: top left, top right;
    background-repeat: no-repeat, no-repeat;
    height: 30px;
}

/* footer styles */
footer {
    background-color: black;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 0.9rem;
    color: #f6ced7;
    margin: 10px auto;
    padding: 20px;
}

@media (max-width: 800px) {

#banner {
    background-image: url('graphics/promotional_banner(mobile).png');
}

#caption {
    background-image: url('graphics/cloud_bubble1(mobile).png');
}

@keyframes backgroundChange {
    0% {
        background-image: url('graphics/cloud_bubble1(mobile).png');
    }
    50% {
        background-image: url('graphics/cloud_bubble1(mobile).png');
    }
    100% {
        background-image: url('graphics/cloud_bubble2(mobile).png');
    }
}

header {
    flex-direction: column;
    padding-top: 10px;
}

header h1 {
    font-size: 2.5rem;
    margin-right: 0;
    margin-bottom: 15px;
}

header nav {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.grid-container2 {
    grid-template-columns: auto auto;
}

.social1 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}

.social2 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.social3 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 6;
}

.social4 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 6;
}

.social5 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 6;
    grid-row-end: 9;
}

.social6 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 6;
    grid-row-end: 9;
}

.social7 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 9;
    grid-row-end: 12;
}

.social8 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 9;
    grid-row-end: 12;
}

.chibi-wrapper {
    height: 200px;
}

.chibis {
    height: 200px;
}

.chibis-heart {
    height: 200px;
    width: 461.533px;
}

}
