body {
    font-family: IBM Plex Mono;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-size: cover;
    background-color: #090819;
    font-size: 13px;
}

main {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.contentboxtitle {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(176, 156, 230, 1) 22%, rgba(124, 87, 199, 1) 44%, rgba(124, 87, 199, 1) 45%, rgba(122, 94, 216, 1) 45%, rgba(197, 167, 250, 1) 100%);
    border-bottom: dashed 1px #39013f;
    margin: 0 0;
    text-align: center;
    height: 25px;
    margin: 0 10px 0 0;
}

.content {
    padding: 10px;
    background-color: #c9dcf5;
    margin: 0 10px 0 0;
    height: 200px;
}

#leftbarcontent {
    padding: 10px;
    background-color: #c9dcf5;
    margin: 0 10px 10px 0;
}

.pagecontainer {
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
}

header img {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
}

.headercontent {
    position: absolute;
    top: 300px;
    left: 180px;
    color: #fdf7ec;
    text-shadow: 2px 2px 2px black;
    font-family: "Rubik Lines";
    font-size: 30px;
    font-style: italic;
}

.container {
    display: flex;
    flex-direction: row;
    border: groove 1px white;
    height: 100%;
}

.leftbar {
    display: flex;
    flex-direction: column;
    flex: 2;
    margin: 1%;
}

nav {
    display: flex;
    flex-direction: column;
    flex: 2 5;
}

.maincontent {
    display: flex;
    flex-direction: column;
    flex: 6 1;
    padding: 10px;
}

#blogcontent {
    height: 70%;
    overflow-y: scroll;
    background-color: #c9dcf5;
    margin: 0 10px 0 0;
    padding: 10px;
}

.stamps {
    border: dashed 1px #cd91ff;
    display: flex;
    overflow: hidden;
    width: 700px;
    padding: 10px;
    margin: 0 10px 10px 0;
}

.marqueeitem {
    display: flex;
    overflow: visible;
    width: fit-content;
    animation: marquee 10s linear infinite;
}

.marqueeitem img {
    max-height: 50px;
    padding-right: 20px;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.containerothercontent {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

/* this makes the boxes of the main content in the middle
align the way i want them to */
.containerothercontent div:first-child {
    flex: 3 1;
}

.containerothercontent div:nth-child(2) {
    flex: 3 1;
}

#currentlywatching  {
    padding-top: 5%;
    color: white;
    text-align: center;
    font-style: italic;
    position: relative;
}

#currentlywatching img{
    max-width: 70%;
    border-radius: 15px;
}

#currentlywatching img:nth-child(2){
    max-height: 108px;
    max-width: 200px;
    opacity: 0.5;
    position: absolute;
    z-index: 2;
}

#blinkies {
    display: flex;
    flex-direction: column;
    margin: 0 10px 10px 0;
}

#blinkies img {
    padding-top: 7px;
}

#todolist {
    margin-right: 30px;
    border: dotted 2px white;
    color: white;
    height: 200px;
    overflow-y: scroll;
    scrollbar-color: #463cd5 white;
    scrollbar-width: thin;
}

#todolist li {
    padding: 10px;
    border-bottom: solid 1px white;
}

aside {
    display: flex;
    flex-direction: column;
    flex: 2 4;
    margin: 1%;
    color: #ffffff;
}

aside .news {
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-color: #463cd5 #ffffff;
    border: 2px dotted white;
    height: 50%;
}

aside div {
    border-bottom: solid 1px #736fa2;
}

.date {
    text-decoration: underline;
    font-weight: bold;
    color: #2e2b59;
    font-size:large;
    padding: 10px;
    font-family: Tektur;
    font-size: 15px;
    text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff; ;
}

h2 {
    font-family: Tektur;
    color: #ffffff;
    font-size: 17px;
    text-align: center;
}

h3 {
    font-family: Rubik Lines;
    color: white;
    text-align: center;
    font-size: 20px;
}

p {
    padding: 0 10px;
}

span:not(.date) { 
    color: #1d329c;
    font-weight: bold;
}

