html {
    cursor: url("/assets/img/ani1105.cur"), auto;
}

body {
    background-image: url("/assets/img/konakona.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    position: relative;
    font-family: playfair-display;
}

hr {
    border: none;
    height: 1px;
    background-image: linear-gradient(to right, white, blue, white);
}

*::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.container {
    /* width: 80%; */
    width: 70%;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

.content {
    display: grid;
    height: 850px;
    width: 95%;
    margin: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 10fr 1fr 8fr 6fr 0.1fr;
    grid-auto-columns: 1fr;
    gap: 10px 1%;
    grid-auto-flow: row;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
    grid-template-areas:
        "dog   header   header header sitter"
        "misc1 music    main   main   cbox"
        "misc1 links    main   main   cbox"
        "misc1 links    stamps stamps cbox"
        ". . . . .";
}

.chat {
    grid-area: cbox;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-items: flex-end;
    background-color: white;
}

.chatbox {
    width: 100%;
    height: 100%;
}

#chatbox {
    position: relative;
    height: 100%;
    width: 100%;
}

.news-banner {
    text-shadow: 2px 2px white;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
}

.header-banner {
    position: absolute;
    text-shadow: 2px 2px white;
    background: rgba(255, 255, 255, 0.9);
    user-select: none;
    bottom: 12px;
}

.title {
    text-align: center;
    font-size: 6vh;
    text-shadow: 2px 2px white;
}

.header {
    grid-area: header;
    width: 100%;
    height: 100%;
}

.header-img {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(/assets/img/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.music {
    grid-area: music;
    background-color: white;
    width: 100%;
    height: 100%;
}

.links {
    grid-area: links;
    background-color: white;
    width: 100%;
    height: 100%;
    overflow: auto;
    font-size: 3vh;
}

.main {
    grid-area: main;
    background-color: white;
    width: 100%;
    height: 100%;
    overflow: auto;
    font-size: 2vh;
}

.text-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.audio-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    width: 90%;
    border-radius: 255px 15px 255px 15px/15px 255px 15px 255px;
    border: 3px solid #6292f0;
    background: white;
    margin: auto;
    margin-bottom: 3%;
    margin-top: 3%;
    padding: 1%;
}

.audio-box > audio {
    width: 100%;
}

.text-img {
    flex: 1;
    width: 100%;
    height: auto;
}

.main-text {
    flex: 1;
    width: 100%;
    height: 100%;
    font-size: 2vh;
}

.stamps {
    grid-area: stamps;
    background-color: white;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.sitter {
    grid-column: 5;
    grid-row: 1/3;
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sitter-img {
    width: 100%;
    height: auto;
    margin-bottom: 81px;
}

.tshirt {
    grid-area: misc1;
    width: 100%;
    height: 100%;
}

.tshirt-img {
    width: 100%;
    height: auto;
}

.dog {
    grid-area: dog;
    background-color: white;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.dog-img {
    height: 100%;
    width: auto;
}

.webrings {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: scroll;
}

.konata1 {
    position: absolute;
    bottom: 0;
    left: 15px;
    max-width: 10%;
    z-index: 10;
}

.konata2 {
    position: absolute;
    bottom: 0;
    right: 15px;
    max-width: 15%;
    z-index: 10;
}

p {
    margin: 2.5%;
}

#statuscafe {
    padding: .5em;
    background-color: azure;
    border: 1px solid #6292f0;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}