.parent {
    display: grid;
    grid-template-columns: repeat(7, 135px);
    grid-template-rows: repeat(12, fr);
    gap: 5px;
}

.div1 {
    grid-column: span 4 / span 4;
    grid-row: span 2 / span 2;
    border: 2px solid black;
    border-radius: 5px;
    padding: 8px;
    width: fit-content;
    height: fit-content;
    box-shadow: rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    background: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 33%,
        rgba(237, 237, 237, 1) 50%,
        rgba(255, 255, 255, 1) 51%
    );
}

.header {
    width: 520px;
    height: 150px;
    border: 1px solid black;
    border-radius: 3px;
    background-image: url(https://files.catbox.moe/urrkr7.png);
    background-size: cover;
}

.div2 {
    grid-column: span 4 / span 4;
    grid-column-start: 1;
    grid-row-start: 3;
    border: 2px solid black;
    border-radius: 5px;
    width: fit-content;
    height: fit-content;
    padding: 6px;
}

.line {
    width: 519px;
    height: 40px;
    border: 1px solid black;
    background: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 33%,
        rgba(237, 237, 237, 1) 50%,
        rgba(255, 255, 255, 1) 51%
    );
    padding: 4px;
}

.div3 {
    grid-column-start: 5;
    grid-row-start: 1;
    border: 2px solid white;
    width: fit-content;
    height: fit-content;
    padding: 5px;
    border-radius: 5px;
    background-color: #ff5d83;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
        rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset,
        0 0 0 2px black;
}

.clock {
    width: 130px;
    height: 20px;
    text-align: center;
    padding-top: 5px;
    border: 2px inset white;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
        rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset,
        rgb(101, 101, 101) 0px 0px 0px 2px;
    background: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 33%,
        rgba(237, 237, 237, 1) 50%,
        rgba(255, 255, 255, 1) 51%
    );
}

.div4 {
    grid-column-start: 5;
    grid-row-start: 2;
    border: 2px inset white;
    border-radius: 5px;
    box-shadow: 0 0 0 2px black;
    padding: 5px;
    width: fit-content;
    height: fit-content;
    position: relative;
    top: -5px;
    background-color: black;
}

.neighbors {
    width: 130px;
    height: 90px;
    border: 2px inset white;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
        rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset,
        rgb(0, 0, 0) 0px 0px 0px 2px;
    background: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(242, 242, 242, 1) 0%,
        rgba(255, 255, 255, 1) 15%,
        rgba(255, 255, 255, 1) 28%,
        rgba(196, 196, 196, 1) 29%,
        rgba(207, 207, 207, 1) 32%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 1) 59%,
        rgba(255, 255, 255, 1) 80%,
        rgba(176, 176, 176, 1) 89%,
        rgba(212, 212, 212, 1) 98%,
        rgba(255, 255, 255, 1) 99%
    );
}

.div5 {
    grid-row: span 5 / span 5;
    grid-column-start: 5;
    grid-row-start: 3;
    width: fit-content;
    height: fit-content;
    padding: 3px;
    background: linear-gradient(180deg, #1c1c1c, #343434, #383838, #000000);
    border: 2px solid white;
    border-radius: 5px;
    box-shadow:
        rgba(0, 0, 0, 0.4) 0px 2px 4px,
        rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
        rgba(0, 0, 0, 0.2) 0px -3px 0px inset,
        0 0 0 2px black;
}

.holding {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row dense;

    /* extra styles */
    grid-gap: 0.5rem;
}

.buttons {
    grid-column-start: 1;
    border: 2px solid black;
    text-shadow:
        -1px 0 #000,
        0 1px #000,
        1px 0 #000,
        0 -1px #000;
    width: 128px;
    height: 10px;
    border-radius: 5px;
    color: white;
    /* extra styles */
    background-image: radial-gradient(white 10%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 60%),
        linear-gradient(0deg, rgba(34, 34, 34, 0.75) 0%, white 100%),
        url("https://www.transparenttextures.com/patterns/45-degree-fabric-dark.png");
    mix-blend-mode: lighten;
    padding: 4px;
    font-weight: 700;
    font-size: 10px;
    box-shadow:
        inset 0px 0px 1px 2px white,
        0 0 0.375em 0 grey;
    background-color: rgba(255, 255, 255, 0);
}

.highlight {
    width: 94%;
    left: 3%;
    bottom: -5%;
    height: 94%;
    opacity: 0.8;
    background-image: radial-gradient(white 10%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 60%);
    mix-blend-mode: overlay;
    position: relative;
}

.l-links {
    width: 140px;
    height: 310px;
    border: 2px inset black;

    background-blend-mode: hard-light;
    background-position: top;
    background: linear-gradient(180deg, #1c1c1c, #030303, #383838, #000000),
        url(https://www.transparenttextures.com/patterns/black-twill.png);
    background-size: 20px;
    overflow: auto;
}
.div6 {
    grid-column: span 4 / span 4;
    grid-row: span 4 / span 4;
    grid-row-start: 4;
    border: 2px solid black;
    border-radius: 5px;
    padding: 10px;
    width: fit-content;
    height: fit-content;
    background: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(242, 242, 242, 1) 0%,
        rgba(255, 255, 255, 1) 15%,
        rgba(255, 255, 255, 1) 28%,
        rgba(196, 196, 196, 1) 29%,
        rgba(207, 207, 207, 1) 32%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 1) 59%,
        rgba(255, 255, 255, 1) 80%,
        rgba(176, 176, 176, 1) 89%,
        rgba(212, 212, 212, 1) 98%,
        rgba(255, 255, 255, 1) 99%
    );
}

.info {
    border: 2px inset white;
    box-shadow: 0 0 0 1px black;

    border-radius: 5px;
    background-blend-mode: hard-light;
    background-position: top;
    background: linear-gradient(180deg, #000000, #272727, #0b0b0b, #000000),
        url(https://www.transparenttextures.com/patterns/cross-stripes.png);
    background-size: 7px;
    width: 510px;
    height: 210px;
    padding: 3px;
    color: white;
    font-size: 13px;
}

.scrilbox {
    border: 2px inset black;
    box-shadow: 0 0 0 1px white;
    background: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 5%,
        rgba(254, 254, 254, 1) 39%,
        rgba(227, 227, 227, 1) 37%,
        rgba(250, 250, 250, 1) 54%,
        rgba(255, 255, 255, 1) 100%
    );
    border-radius: 3px;
    overflow: auto;
    width: 340px;
    height: 180px;
    position: relative;
    left: 155px;
    top: 10px;
}

.updates {
    color: white;
    font-size: 20px;
    font-family: arial;
    font-weight: bold;
    filter: drop-shadow(0px 1px black) drop-shadow(0 -1px black) drop-shadow(1px 0 black) drop-shadow(-1px 0 black)
        drop-shadow(0px 1px #ff5d83) drop-shadow(0 -1px #ff5d83) drop-shadow(1px 0 #ff5d83) drop-shadow(-1px 0 #ff5d83);
}
.content {
    width: 240px;
    height: 100px;
    padding: 4px;
    border: 1px solid black;
    background: #ffffff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 5%,
        rgba(254, 254, 254, 1) 39%,
        rgba(227, 227, 227, 1) 37%,
        rgba(250, 250, 250, 1) 54%,
        rgba(255, 255, 255, 1) 100%
    );
}

.box1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-row-start: 8;
    border: 2px solid white;
    background-color: black;
    border-radius: 5px;
    padding: 5px;
    width: fit-content;
    height: fit-content;
}

.box2 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 8;
    border: 2px solid white;
    background-color: black;
    border-radius: 5px;
    padding: 5px;
    width: fit-content;
    height: fit-content;
}

.foot {
    grid-column: span 4 / span 4;
    grid-row: span 2 / span 2;
    grid-row-start: 10;
    border: 1px solid white;
    border-radius: 5px;
    padding: 8px;
    width: fit-content;
    height: fit-content;
    background: #000000;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 1) 18%,
        rgba(43, 43, 43, 1) 53%,
        rgba(14, 14, 14, 1) 54%,
        rgba(0, 0, 0, 1) 100%
    );
}

.footer {
    width: 515px;
    height: 35px;
    border: 1px solid white;
    padding: 4px;
    background-color: black;
    font-size: 10px;
    color: darkgrey;
    text-align: center;
}
iframe {
    border: 0px;
    background: transparent;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    display: none;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: transparent;
}

body {
    font-family: arial narrow;
   background: #FF5D83;
background: linear-gradient(0deg, #FF5D83 7%, #FF5D83 26%, #FFFFFF 50%, #FFFFFF 100%);
}

/* unvisited link */
a:link {
    color: white;
}

/* visited link */
a:visited {
    color: white;
}

/* mouse over link */
a:hover {
    color: white;
}

/* selected link */
a:active {
    color: white;
}
