body {
    background-image: url(images/bg11.gif);
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    background-attachment: fixed;
    width: 50%;
    margin: auto;
}

* {
    box-sizing: border-box;
}

.main-container {
    height: 790px;
    width: 780px;
    border: 5px dashed rgba(0, 0, 255, 0);
}

header {
    border: 5px dashed rgba(128, 0, 128, 0);
    height: 100px;
    background-color: rgba(245, 245, 245, 0);

}

/*FF0080 450920 */
h1 {
    font-size: 85px;
    background-image: linear-gradient(to right, #12B3A4, #1253B3);
    color: transparent;
    background-clip: text;
    position: absolute;
    margin-top: -10px;
    margin-bottom: -3px;
    margin-left: 5px;
    z-index: 100;
}

nav {
    border: 5px dashed rgba(45, 0, 128, 0);
    height: 48px;
    background-color: rgba(245, 245, 245, 0);

}

a:link {
    color: #c8d;

}

/*c8d cute color*/
a:visited {
    color: #568be9;
}

a:hover, a:active {
    background-color: #a1a;
}

.container {
    display: grid;
    grid-template-columns: 180px 180px 180px 182px;
    grid-template-rows: 300px 200px 100px;
    gap: 1em;
    grid-template-areas:
        "box1 box1 box1 box2"
        "box3 box4 box5 box6"
        "box7 box7 box7 box8";
}

.hi {
    background-color: rgba(245, 245, 245, 0.348);
    border: 5px dashed rgba(255, 0, 0, 0);
    display: grid;
    place-items: start center;
}

.carousel {
    margin: 0;
    width: 90%;
    display: flex;
    overflow-x: auto;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    animation: spin 10s infinite linear;
    padding-right: 5px;
}

.card {
    flex: 0 0 5px;
    height: 5em;
    padding: 5px;
    align-content: center;
}

@keyframes spin {
    from {
        translate: 0;
    }

    to {
        translate: -100%;
    }
}

#b6 {
    padding: 10px;
}

h2 {
    margin: -10px;
    margin-bottom: 10px;
    padding-bottom: 2px;
    padding-top: 2px;
    padding-left: 4px;
    align-self: stretch;
    position: relative;
}

#update {
    overflow-y: auto;
    overflow-x: hidden;
    border: none !important;
    padding: 0px !important;
    height: 150px;
}

#update::-webkit-scrollbar {
    display: none;
}

.chatbox {
    background-color: #2c4730;
    width: 95%;
    height: 95%;
    display: inline-block;
    margin: 5px;
}

#statuscafe {
    text-align: center;
    font-size: smaller;
    width: 160px;
    height: 125px;
    margin-top: 5px;
}

#statuscafe-username {
    margin-bottom: .5em;
}

#statuscafe-content {
    margin: 6%;
}

#b1 {
    color: whitesmoke;
    height: 18em;
    padding: 1rem;
    background-image: url(images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: justify;
    text-justify: inter-word;
    background-color: #0000ff00;

}

#b2,
#b4,
#b5,
#b7 {
    background: none;
}