:root {
                --body-bg-image: url('img/blank.png');
            }

            @font-face {
                font-family: "Averia Sans Libre";
                src: url('font/AveriaSansLibre-Regular.ttf');
            }

            @font-face {
                font-family: "Averia Sans Libre";
                src: url('font/AveriaSansLibre-Bold.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family: "Averia Sans Libre";
                src: url('font/AveriaSansLibre-Italic.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: "Averia Sans Libre";
                src: url('font/AveriaSansLibre-Italic.ttf');
                font-style: italic;
                font-weight: bold;
            }

            body {
                background-color: #08031A; /* scrollbar color */
                background-size: 100% 100%;
                background-attachment: fixed; 
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

/* Layouts for Pages */
.navbar { grid-area: header; }
.leftSidebar { grid-area: left; }
.rightSidebar { grid-area: right; }
.main1 { grid-area: main1; }
.main2 { grid-area: main2; }
.main3 { grid-area: main3; }
.main4 { grid-area: main4; }
footer { grid-area: footer; }

.parentaboutme {
	display: grid;
	grid-template:
		'header header header header header'
		'left main1 main1 main1 right'
		'left main2 main2 main2 right'
		'left main3 main3 main3 right'
		'left main4 main4 main4 right'
		'footer footer footer footer footer';
	max-width: 1500px;
	margin: 0 auto;  
	grid-gap: 10px;
}

/* Fonts and Text */
hr {
	background-color: #8ABFA6;
	border: none;
	height: 1px;
	width: 290px;
}

h1, h2, h3 {
	color: #8ABFA6;
	font-family: "Averia Sans Libre";
}

h1 {
	font-size: 25px;
	text-align: center;
}
            
p {
	color: #8ABFA6;
	font-size: 18px;
	font-family: "Averia Sans Libre";
	line-height: 25px;
}

/* Navbar */
.navbar {
    height: 75px;
    background-color: #293b33;
    border-radius: 10px;
    display: flex;
    align-items: center;
	justify-content: flex-start;
	padding: 0 20px;
}

.navbar ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
	width: 100%;
}

.navbar .navlinks {
    display: flex;
    gap: 10px;
    margin: 0 auto;
}

.navlogo {
    margin-left: 8px;
}

.navbutton {
    background-color: #8ABFA6;
    color: #0E1411;
    font-weight: 800;
    text-decoration: none;
    font-size: 18px;
    font-family: "Averia Sans Libre";
    padding: 8px 30px;
    border-radius: 10px;
    margin-left: 15px;
}

.navbutton:hover {
    background-color: #658C7A;
}

.navbar img {
    max-height: 50px;
    width: auto;
}

/* Middle Part - mainChat and mainWip */
.main1,
.main2,
.main3,
.main4 {
    background-color: #293b33;
    border-radius: 10px;
    padding: 20px 50px;
}

.main1 h1,
.main2 h1,
.main3 h1,
.main4 h1 {
    margin-top: 0;
    margin-bottom: 0;
}

.main1 p,
.main2 p,
.main3 p,
.main4 p {
    margin: 10px 0px 10px 0px;
}

.main1 {
	text-align: justify;
	hyphens: auto;
	max-width: 900px;
    margin: 0 auto;
}

/* Sidebars - leftSidebar and rightSidebar */
.leftSidebar,
.rightSidebar {
    background-color: #293b33;
	color: #8ABFA6;
    padding: 20px;
    width: 340px;
	border-radius: 10px;
	font-family: "Averia Sans Libre";
    display: flex;
    flex-direction: column;
}

.leftSidebar h1 {
	margin-top: 0;
}

.aboutme p {
	margin: 5px auto;
	text-align: center;
}

.rightsidebarmail {
	margin: 0 auto;
	margin-bottom: -20px;
}

/* Statuscafe and Scrollboxes */
#statuscafe {
    padding: 0.8em;
    border: 2px solid #8ABFA6;
}

#statuscafe-username {
    margin-bottom: 5px;
	text-align: center;
	font-weight: bold;
}

#statuscafe-username a {
    color: inherit;
    font-weight: bold;
    text-decoration: none;
}

#statuscafe-content {
    margin: 0 1em 0em 1em;
    line-height: 25px;
	text-align: justify;
}

#statuscafe-username,
#statuscafe-username a,
#statuscafe-content {
	font-size: 18px;
}

.scrollboxfunfacts {
	height: 28%;
	padding: 0 15px;
    border: 2px solid #8ABFA6;
    overflow-y: auto;
    scrollbar-color: #8ABFA6 #293b33;
    text-align: justify;
}

.scrollboxcurrent {
	padding: 0 15px;
    border: 2px solid #8ABFA6;
    overflow-y: auto;
    scrollbar-color: #8ABFA6 #293b33;
    text-align: justify;
}

.scrollboxcurrent p,
.scrollboxfunfacts p {
	margin: 10px 0px 10px 0px;
}

.scrollboxmain {
	max-height: 250px;
	overflow-y: auto;
	padding: 0 15px;
    border: 2px solid #8ABFA6;
    scrollbar-color: #8ABFA6 #293b33;
	margin-bottom: 10px;
	margin-top: 15px;
}

.scrollboxmainwidth {
	min-width: 220px;
}

.scrollboxmainrow {
	display: flex;
	gap: 20px;
}

/* FAQ */
.collapse {
    background-color: #293b33;
    border: 2px solid #8ABFA6;
    padding: 0;
    margin: 20px 0;
    color: #8ABFA6;
    font-family: "Averia Sans Libre";
}

.collapse summary {
    cursor: pointer;
    padding: 10px 18px;
    font-size: 20px;
    font-weight: bold;
    list-style: none;
    outline: none;
	font-size: 18px;
}

.collapse summary::after {
    content: "⯈";
    float: right;
    transition: transform 0.2s ease;
}

.collapse[open] summary::after {
    transform: rotate(90deg);
}

.collapse p,
.collapse ul {
    margin: 0;
    padding: 0 18px 10px 18px;
    font-size: 18px;
    line-height: 25px;
	text-align: justify;
}

/* Footer */
footer {
	background-color: #293b33;
	height: 30px;
	padding: 4px;
	color: #8ABFA6;
	font-family: "Averia Sans Libre";
	text-align: center;
	border-radius: 10px;
}

/* Imgs and links*/
#khatpop {
	display: block;
	margin: auto;
	width: 80%;
}

.socialsrow img,
a img.socials {
    width: 25px;
    height: auto;
    display: inline-block;
}

.socialsrow {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials {
	width: 10%;
}

.socials:hover{
	filter: brightness(70%);
}

/*Make stuff stick to page - right*/
.sticky-right {
	position: sticky;
	top: 15px;
}

/*Make stuff stick to page - left*/
.sticky-left {
	position: sticky;
	top: 15px;
}