* {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Permanent+Marker&display=swap');

.gloria-hallelujah-regular {
    font-family: "Gloria Hallelujah", cursive;
    font-weight: 400;
    font-style: normal;
}

.permanent-marker-regular {
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
}

body {
    background-image: url(https://media.discordapp.net/attachments/1450300784205103114/1488313985534263306/photo-1705876116446-2a258025ece3.avif?ex=69cc53e9&is=69cb0269&hm=43b930d0f88b079042aabcedbc9c11ae72236084990b8bf838e4643941b5778e&=&format=webp&quality=lossless&width=1056&height=704);
    background-repeat: no-repeat;
    background-size: cover;
}

h1 {
    font-family: "Permanent Marker", sans-serif;
    color: #C94265;
    margin-left: 3%;
}

h2 {
    font-family: Ubuntu, sans-serif;
    color: #C94265;
}

h6 {
    font-family: Ubuntu, sans-serif;
    color: #C94265;
}

p {
    font-family: "Gloria Hallelujah", monospace;
    color: #C94265;
    margin-left: 3%;
}

Summary {
    font-family: "Permanent Marker", sans-serif;
    font-size: 30px;
    color: #C94265;
}

details {
    font-family: "Gloria Hallelujah", monospace;
    color: #C94265;
}


.grid-container {
    display: grid;
    grid-column: span 3;
    grid-row: span 6;
    grid-template-columns: 15% 25% 55%;
    gap: 10px;


}

.grid-container>div {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, .7);
    border-style: solid;
    border-width: 3px;
    border-color: #C94265;
}

.item1 {
    grid-row-start: 1;
    grid-column-end: 2;
    grid-column-start: 1;
    grid-row-end: 10;
    overflow: auto;
    text-align: center;
}

.item2 {
    grid-row-start: 2;
    grid-row-end: 6;
    grid-column-start: 2;
    grid-column-end: 4;
    overflow: auto;
}

.item3 {
    grid-row-start: 6;
    grid-column-end: 3;
    grid-column-start: 2;
    grid-row-end: 10;
    overflow: auto;

}

.scroller {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
}

.scrollerContentBlink {
    display: inline-block;
    padding-left: 100%;
    animation-name: scroll-left;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.scrollerContentBlink img {
    height: 35px;
    margin-right: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.scrollerContentBlink:hover {
    animation-play-state: paused;
}


.collumnText {
    float: left;
    width: 50%;

}

.collumnText::after {
    content: "";
    display: table;
    clear: both;
}

nav a {
    display: block;
    color: #C94265;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 20px;
}

nav h1 {
    font-size: 40px;
}

nav a:hover:not(.active) {
    background-color: rgba(201, 66, 101, .75);
    color: white;
}

#pfp {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    border-style: solid;
    border-width: 3px;
    border-color: #C94265;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

#iconTitle {
    text-align: center;
}