* {
    box-sizing: border-box;
}

body {
    overflow: auto;
    color: #000;
    background: linear-gradient(0deg, #ffebf2 0%, #f5f5f5 33%);
    font-family: "Inconsolata", monospace;
    font-weight: 400;
    font-size: 17px;
    font-style: normal;
}

.jacquard-12-regular {
    font-family: "Jacquard 12", system-ui;
    font-weight: 400;
    font-style: normal;
}

.xanh-mono-regular {
    font-family: "Xanh Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

.xanh-mono-regular-italic {
    font-family: "Xanh Mono", monospace;
    font-weight: 400;
    font-style: italic;
}

.inconsolata-text {
    font-family: "Inconsolata", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

h3 {
    font-size: 22px;
}

.container {
    display: flex;
    background-color: #00000000;
    max-width: 800px;
    max-height: max-content;
    margin: 50px auto;
    border: 2px #000;
}

.hero {
    height: 100px;
}

.sidebar {
    position: sticky;
    top: 10px;
    height: 100vh;
    width: 100px;
}

.sidebar-buttons {
    display: block;
    background-color: #fff;
    background: url("../images/pattern.png") center;
    background-size: cover;
    object-fit: contain;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 9px;
    border: 3px solid #000000;
    border-style: solid;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 5px;
    font-family: "Jacquard 12", system-ui;
    font-size: 25px;
    text-shadow: 1px 1px 2px black, 0 0 25px rgb(165, 147, 215), 0 0 5px rgb(225, 178, 197);
}

.windows {
    overflow: hidden;
    margin-left: 5px;
    padding: 0px;
    flex-grow: 1;
}

.window {
    max-width: 700px;
    width: 100%;
    background-color: #fff;
    color: #000;
    margin: 0px 0px;
    padding: 5px 5px;
    border: 3px #000;
    border-style: solid;
    border-radius: 3px;
    margin-bottom: 20px;
}

.window-header {
    background: linear-gradient(270deg, #e1c1ce, #020000 100%);
    color: #f5f5f5;
    border: 2px #000000;
    margin-top: 0px;
    margin-left: 0px;
    padding: 8px;
    border-style: dashed;
    display: flex;
    cursor: move;
    justify-content: space-between;
    font-family: "Jacquard 12", system-ui;
    font-size: 25px;
    border-radius: 3px;
}

.window-controls {
    margin-right: 3px;
    border: 2px #000;
    border-style: solid;
    background-color: #f5f5f5;
    padding: 0 5px;
    cursor: pointer;
    color: #000;
    border-radius: 3px;
}

.window-body {
    border: 2px #000;
    border-style: dashed;
    padding: 8px;
    margin-top: 5px;
    border-radius: 3px;
}

.gallery {
    margin: 2px;
    display: flex;
    gap: 2px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.social-media {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.social-media a {
    width: max-content;
    height: max-content;
    margin: 3px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    padding: 5px;
    background-color: #ffebf2;
    border: 4px dashed #ffc4d0;
    border-radius: 4px;
    color: #32242a;
}

.social {
    font-size: 20px;
    font-weight: 600;
    margin-top: -5px;
    margin-bottom: -3px;
    padding-left: 3px;
}

hr {
    width: 100%;
    color: #000000;
    height: 3px;
    background-color: #896f80;

}

img {
    max-width: 100%;
    height: auto;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track(FROM W3SCHOOLS) */
::-webkit-scrollbar-track {
    background: #ffc4d0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #3a2c37;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #8c676f;
}

#statuscafe {
    padding: .5em;
    background: linear-gradient(0deg, #e7d1d8 0%, #ffebf2 33%);
    border: 4px double #151415;
    border-radius: 3px;
}

#statuscafe-username {
    margin-bottom: .5em;
}

#statuscafe-username a {
    font-weight: 700;
    color: #3a2c37;
}

#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}

@media (max-width: 700px) {

    .container {
        display: block;
        margin: 15px;
    }

    .sidebar {
        position: static;
        width: 100%;
        height: auto;

        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;

        margin-bottom: 15px;
    }

    .sidebar-buttons {
        margin: 0;
        font-size: 20px;
    }

    .windows {
        margin-left: 0;
    }

    .window-split {
        gap: 2px;
    }

}

.window-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.updates {
    width: 100%;
    background-color: #fff;
    color: #000;
    margin: 0px 0px;
    padding: 5px 5px;
    border: 3px #000;
    border-style: solid;
    border-radius: 3px;
    margin-bottom: 20px;
}

.cbox {
    width: 100%;
    background-color: #fff;
    color: #000;
    margin: 0px 0px;
    padding: 5px 5px;
    border: 3px #000;
    border-style: solid;
    border-radius: 3px;
    margin-bottom: 20px;
}

.updates-body {
    max-height: 401px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.update p {
    border: 2px solid #ffc4d0;
    border-radius: 3px;
    padding: 8px;
    margin: 3px;
}

.marquee a {
    margin: 2px;
}

.marguee img {
    max-width: 88px;
    max-height: 31px;
}

.my-button {
    display: flex;
    justify-content: center;
}

a {
    color: #4f3d47
}

.hub-grid {
    border: 0px #896f80 solid;
    border-radius: 3px;
    margin: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.hub-grid a {
    padding: 10px;
    color: #3a2c37;
    border: 3px #ffc4d0 dashed;
    border-radius: 5px;
    background: #ffebf2;
    text-decoration: none;
    text-align: center;
    font-size: 23px;
    font-weight: 600;
}