/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
/*End of Fonts*/

* {
    font-family: Arial, Helvetica, sans-serif;
	color: var(--text);
}

:root {
    --text: #fff;
    --bg: rgb(35, 35, 35);
    --hovercolor: dimgray;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color-scheme: dark; /* And only dark mode, no light mode */
}

body, html {
    background-color: var(--bg);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
}

a {
    font-family: inherit;
}

p {
    font-family: Lexend, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.8;
}

    .paragraph-no-margin {
        margin: 0;
    }

span, h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

    .heading-no-margin {
        margin: 0;
    }

b, i, s, u {
    font-family: inherit;
}

ul, ol {
    line-height: 1.8;
}

hr {
    border: none;
    border-top: 1px solid rgb(72, 72, 72);
    margin: 32px 0;
}

header {
    background-color: rgba(45, 45, 45, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 6px 30px;
    box-sizing: border-box;
    position: sticky;
    z-index: 1000;
    backdrop-filter: blur(6px);
    --webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 18px 1px rgb(0 0 0 / 25%), inset 0 0 10px 0px rgb(75 75 75 / 30%);
    border: 1px solid rgba(100, 100, 100, 0.3);
}

    #logoandtitle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        user-select: none;
        gap: 20px;
    }

        #pfp {
            max-height: 48px;
            border-radius: 10px;
        }

        #title {
            font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: lightslategray;
        border-radius: 14px;
        width: auto;
        gap: 1px;
        flex-wrap: nowrap;
        margin-left: auto;
        position: relative;
        z-index: 10;
        box-shadow: inset 0 0px 8px 1px rgb(100 100 100 / 50%);
    }

        nav a, #dropdown-button {
            padding: 12px 18px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            color: black;
            transition: background-color 0.2s, color 0.2s;
            font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            user-select: none;
            border-radius: inherit;
        }

        nav a:hover, #dropdown-button:hover {
            background-color: teal;
            color: white;
            box-shadow: inset 0 0px 8px 1px rgb(75 75 75 / 25%);
        } 
        
        #dropdown {
            float: left;
            overflow: hidden;   
        }

            /*#dropdown #dropdown-button {
                padding: 20px 30px;
                color: black;
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                text-align: center;
                text-decoration: none;
                font-weight: 600;
                transition: background-color 0.2s, color 0.2s;
                user-select: none;
            }*/

            #dropdown-content {
                display: none;
                position: absolute;
                background-color: rgb(140, 190, 200);
                width: auto;
                height: auto;
                z-index: 1;
                border-radius: 0 0 8px 8px;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            }

            #dropdown-content a {
                float: none;
                color: black;
                text-decoration: none;
                display: block;
                text-align: left;
                padding: auto;
            }

            #dropdown-content a:hover {
                background-color: slategray;
                color: white;
            }

            #dropdown:hover #dropdown-content {
                display: block;
            }



    /* Mobile menu - initially hidden */
    #sidebar {
        display: block;
        background-color: rgba(65, 65, 65, 0.5);
        position: fixed;
        left: 0;
        height: auto;
        transition: transform 0.1s ease;
        transform: translateX(-100%);
        overflow-x: hidden;
        z-index: 10;
        pointer-events: none;
        /*border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;*/
        border-radius: 14px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        margin: 0 0 0 5%;
    }

        #sidebar a {
            display: block;
            color: snow;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Funnel Sans', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        #sidebar-button {
            user-select: none;
            border: none;
            margin: 0;
        }

            #sidebar-icon {
                width: 44px;
            }

        #sidebar.show {
            transform: translateX(0);
            pointer-events: auto;
            box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.3), inset 0 0 12px 1px rgb(85 85 85 / 40%);
        }

        #sidebar a:hover {
            background-color: darkcyan / 0.75;
            color: white;
        }

        /*#sidebar-separator {
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        #sidebar-unused_space {
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }*/

main {
    margin: 1vh 12vw 12vh; /* top and bottom | right and left */
    justify-content: center;
    flex: 1;
}

    #page-title-container {
        border-bottom: 1px solid rgb(50, 50, 50);
        margin: 24px 0;
        margin-block-start: 0;
        display: flex;
        align-items: baseline;
        gap: 20px;
    }

        #page-title {
            text-align: left;
        }

        #page-title-container p {
            font-size: medium;
            color: lightgray;
        }

    #mainpage {
        margin: 0;
    }

        #mainpage-center {
            text-align: center;
            justify-content: center;
        }

#headings-container {
    margin: 4% 0 4% 0;
}

    #heading-homepage {
        font-size: xxx-large;
        margin-block-start: 0; 
        margin-block-end: 1%;
    }

        #subheading-homepage {
            margin-block-end: 0;
        }

#quote-container {
    padding: 32px;
    margin: 56px 72px;
    border-left: 4px solid darkcyan;
    border-radius: 18px;
    background-color: darkslategray;
    justify-content: center;
    box-shadow: inset 0 1px 8px rgba(195, 195, 195, 0.2);
}

    #quote-block span {
        color: lightgray;
    }

    #quote-author span {
        color: honeydew;
    }

    #quote-block span, #quote-author span {
        display: block;
        text-align: left;
        font-family: 'Lexend', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: large;
    }

#categories-title-and-tags-container {
    margin: 24px 0;
    margin-block-start: 0;
}

#category-tags-container {
    display: flex;
    gap: 8px;
}

    #category-tag {
        padding: 6px 10px;
        background-color: dimgray;
        border: 2px solid gray;
        border-radius: 12px;
        font-weight: bolder;
    }

#blockcontainer {
    display: flex;
    gap: 2vh;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

    #block {
        display: flex;
        flex-direction: column; 
        height: auto;
        width: auto;
        background-color: rgb(190, 190, 190);
        padding: 2%;
        border: solid;
        border-radius: 15px;
        border-color: darkcyan;
        border-width: 4px;
    }

        #block:hover {
            filter: brightness(1.075);
            transition: 0.3s;
        }

        #block span {
            color: black;
            flex-wrap: wrap;
            text-align: left;
        }

        #block .titleblock {
            font-size: larger;
            font-weight: bolder;
            display: block; 
        }

        #block .smallerfont {
            font-size: large;
            margin-top: 1vh; 
            display: block; 
        }

        #block .smallerfont a {
            text-decoration: none !important; 
            color: inherit; 
        }

#links-buttons-line {
    border-bottom: 1px solid rgb(50, 50, 50);
}

#line {
    border-bottom: 1px solid rgb(50, 50, 50);
    margin: 6% 0;
}

/*If you use Safari, you can activate 'corner-shape: squircle' in Feature Flags in Settings*/
@supports (corner-shape: squircle) {
    #smbuttons a {
        corner-shape: squircle;
        border-radius: 32px;
    }

        #pfp {
            corner-shape: squircle;
            border-radius: 32px;
        }

        nav {
            corner-shape: squircle;
            border-radius: 32px;
        }

            nav a {
                corner-shape: squircle;
                border-radius: inherit;
            }

    #quote-container {
        corner-shape: squircle;
        border-radius: 32px;
    }
}

a {
    text-decoration: none;
}

/* Posts */
#post-title-container {
        border-bottom: 1px solid rgb(50, 50, 50);
        margin: 24px 0;
        margin-block-start: 0;
        display: block;
        align-items: center;
        gap: 10px;
    }

        .post-page-title-container {
            display: flex !important;
            border-bottom: 0 !important;
            flex-direction: row;
            align-items: center !important;
            margin-bottom: 24px;
            gap: 20px;
        }

        #post-title {
            text-align: left;
            margin: 0;
        }

        #post-title-container p {
            font-size: medium;
            color: lightgray;
        }

        #post-back-left-arrow img {
            width: 32px;
            filter: invert(1);
        }

#post-container {
    padding: 24px;
    border: 1px solid dimgray;
    background-color: darkslategray;
    border-radius: 14px;
    margin: 0;
    box-shadow: inset 0 0 8px rgba(195, 195, 195, 0.2);
}

/*Blog*/

/* SOON */

/* THE END OF BLOG*/

footer {
    background-color: darkslategray;
    padding: 4vh 4vw 10vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: normal;
    clear: both;
    align-items: center;
    bottom: 0;
    user-select: none;
    box-shadow: inset 1px 0 8px 4px rgb(80 80 80 / 30%);
}

    footer span, footer a {
        color: white;
        font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    #footer-content-container {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

        #footer-content-one, #footer-content-two, #footer-content-three, #footer-content-left-container, #footer-content-right-container {
            display: flex;
            height: auto;
            width: auto;
        }

        #footer-content-left, #footer-content-right {
            display: flex;
            flex-direction: row;
            gap: 1.25rem;
        }

        #footer-content-left {
            float: left;
            margin-left: 0;
        }

        #footer-content-right {
            float: right;
            margin-right: 0;
        }

        #footer-content-one {
            margin-left: 0;
            flex-direction: column;
        }

            #footer-content-one-container {
                display: flex;
                flex-direction: column;
            }

        #footer-content-three {
            margin-right: 0;
        }

            #footer-content-two-container, #footer-content-three-container {
                display: flex;
            }

            #footer-content-two-list, #footer-content-three-list {
                display: flex;
                flex-direction: column;
                gap: 10%;
            }

            #footer-content-right a span:hover {
                color: lightgray;
                transition: 0.2s;
            }

/*Others*/

.unavailablecontent {
    opacity: 0.5;
}

    .unavailablecontent:hover {
        cursor: not-allowed;
    }

/*The end of "Others"*/

/* Dark mode support */
/*@media (prefers-color-scheme: dark) {
	:root {
        --text: #fff;
        --bg: rgb(35, 35, 35);
        --hovercolor: dimgray;
	}*/

    /**

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/* Responsiveness */
@media only screen and (min-width: 768px) {
    #sidebar, #sidebar-button {     
        display: none;
    }

    nav {
        display: inherit ; /* Show desktop menu */
    }

    #bottom-nav-mobile, #bottom-nav-mobile a {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    nav {
        display: none; /* Hide desktop menu */
    }

    #sidebar-button {
        display: flex; /* Show sidebar button */
    }

    #page-title-container {
        display: block;
    }

    #roadmap-category-info-container {
        display: block;
    }

    #roadmap-block {
        padding: 20px;
    }

    #links-container {
        padding: 6% 0;
    }
    
    #bottom-nav-mobile {
        display: flex;
        position: sticky;
        bottom: 6%;
        height: auto;
        width: 90%;
        left: 5%;
        right: 5%;
        margin: 6% auto;
        justify-content: space-around;
        align-items: center;
        background-color: rgba(45, 45, 45, 0.7);
        border: 1px solid rgba(100, 100, 100, 0.2);
        border-radius: 24px;
        box-shadow: 0 0 18px 1px rgb(0 0 0 / 25%), inset 0 0 12px 0px rgb(65 65 65 / 50%);
        backdrop-filter: blur(6px);
        --webkit-backdrop-filter: blur(6px);
        z-index: 1000;
    }

        #bottom-nav-mobile a {
            display: block;
            padding: 4%;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            color: #FFF;
            transition: background-color 0.2s, color 0.2s;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            user-select: none;
            text-wrap: wrap;
            font-size: 85%;
        }

        #bottom-nav-mobile a:hover {
            background-color: teal;
            color: white;
            box-shadow: inset 0 0px 8px 1px rgb(75 75 75 / 25%);
        }
}


@media only screen and (max-width: 1199px) /*smaller screens*/ {
    #logoandtitle {
        float: none;
    }
}

/*-------------------------------------------------*/

@media only screen and (max-width: 359px) {
    header {
        display: flex;
        padding: 3% 5%;
    }

        #title {
            font-size: 105%;
            margin-left: 15px;
        }

        #pfp {
            max-height: 40px;
            margin-right: 0;
        }

    main {
        margin: 2.5% 5% 10% 5%; /* top and bottom | right and left */
    }

    #heading-homepage {
        font-size: 225%;
        margin-block-start: 0; 
        margin-block-end: 1%;
    }

        #subheading-homepage {
            font-size: 100%;
        }

    #quote-container {
        padding: 8%;
        margin: 14% 6%;
    }

        #quote-block span {
            font-size: 120%;
        }

        #quote-author span {
            font-size: 110%;
        }

    #sidebar {
        transform: translateX(-115%);
        width: 45%;
    }

        #sidebar a {
            padding: 12%;
            font-size: 100%;
        }

    #page-title-container {
        margin-bottom: 4%;
    }

    #mainpage {
        font-size: 100%;
        margin: 0;
    }

    span {
        font-size: 100%;
    }

        #blockcontainer {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: left;
            margin-bottom: 10%;
        }
        
            #block {
                display: flex;
                flex-direction: column; 
                height: auto;
                width: auto;
                padding: 2%;
                border: solid;
                border-radius: 8px;
                border-width: 3px;
                background-color: rgb(190, 190, 190);
                border-color: lightslategray;
            }

            #block .titleblock {
                font-weight: bold;
                font-size: 65%;
                display: block; 
            }

            #block .smallerfont {
                font-size: 55%;
                margin-top: 1vh; 
                display: block; 
            }

    #smbuttons {
        gap: 8px;
        margin-left: 0;
        margin-right: 0;
    }

        #smbuttons a {
            padding: 2.5%;
            gap: 6px;
        }

        #smbuttons span {
            font-size: 65%;
        }

        #smbuttons img {
            width: 18px;
        }

    footer {
        padding: 4% 4% 10%;
    }

        footer span {
            font-size: smaller;
        }
}

@media only screen and (min-width: 360px) and (max-width: 599px) {
    header {
        padding: 3% 4%;
    }

        header #pfp {
            max-height: 50px;
        }

        #title {
            margin-left: 5px;
            font-size: 125%;
        }

    #sidebar a {
        padding: 12%;
        font-size: 110%;
    }

    #page-title-container {
        margin-bottom: 4%;
    }
    
    #heading-homepage {
        font-size: 225%;
        margin-block-start: 0; 
        margin-block-end: 1%;
    }

        #subheading-homepage {
            font-size: 100%;
        }

    #quote-container {
        padding: 6%;
        margin: 8% 4%;
    }

        #quote-block span {
            font-size: 120%;
        }

        #quote-author span {
            font-size: 110%;
        }

    #sidebar {
        transform: translateX(-115%);
        width: 45%;
    }

        #sidebar a {
            padding: 12%;
            font-size: 100%;
        }
    
    main {
        margin: 1% 6% 6% 6%; /* top and bottom | right and left */
    }

    p {
        font-size: 100%;
    }

    #mainpage {
        font-size: 100%;
        margin: 0;
    }

        #mainpage h2 {
            font-size: 130%;
        }

        #blockcontainer {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: left;
        }
        
            #block {
                display: flex;
                flex-direction: column; 
                height: auto;
                width: auto;
                padding: 3.5%;
                border: solid;
                border-radius: 10px;
                border-width: 3px;
                background-color: rgb(190, 190, 190);
                border-color: lightslategray;
            }

                #block .titleblock {
                    font-size: 80%;
                }

                #block .smallerfont {
                    font-size: 70%;
                }

    footer {
        padding: 4% 6% 10%;
        margin-top: 10%;
        font-size: small;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    header {
        padding: 14px 18px;
    }

        #title {
            margin-left: 5px;
            font-size: 125%;
        }

    main {
        margin: 2% 6% 6% 6%; /* top and bottom | right and left */
    }

        #mainpage {
            margin: 0;
        }

    header #pfp {
        max-height: 50px;
    }

    #page-title-container {
        margin-bottom: 4%;
    }

        #page-title {
            font-size: 185%;
        }

    #heading-homepage {
        font-size: 225%;
        margin-block-start: 0; 
        margin-block-end: 1%;
    }

        #subheading-homepage {
            font-size: 100%;
        }

    #quote-container {
        padding: 6%;
        margin: 8% 6%;
    }

        #quote-block span {
            font-size: 120%;
        }

        #quote-author span {
            font-size: 110%;
        }

    #sidebar {
        transform: translateX(-115%);
        width: 45%;
        margin: 0 0 0 6%;
    }

        #sidebar a {
            padding: 14%;
            font-size: larger;
        }

#blockcontainer {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
}

    #block {
        display: flex;
        flex-direction: column; 
        height: auto;
        width: auto;
        padding: 2%;
        border: solid;
        border-radius: 10px;
        border-width: 3px;
        background-color: rgb(190, 190, 190);
        border-color: lightslategray;
    }

        #block .titleblock {
            font-size: 65%;
        }

        #block .smallerfont {
            font-size: 55%;
        }

footer {
    padding: 2% 4% 6%;
    font-size: small;
}
}


@media only screen and (max-width: 600px) and (orientation: landscape) {
    /**/
}

@media only screen and (min-width: 600px) and (max-width: 768px) and (orientation: landscape) {
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    header {
        padding: 14px 18px;
    }

        header #pfp {
            max-height: 55px;
            margin-right: 0;
        }

        header #title {
            font-size: 115%;
        }
        
        nav a {
            padding: 12px 12px;
            font-size: 100%;
        }
        
        #dropdown #dropdown-button {
            padding: 14px 12px;
            font-size: 100%;
        }

    main {
        margin: 2% 6% 10% 6%; /* top and bottom | right and left */
    }

        #mainpage {
            margin: 0;
            font-size: 100%;
        }

    #page-title-container {
        margin-bottom: 4%;
    }

        #page-title {
            font-size: 200%;
        }

    #heading-homepage {
        font-size: 225%;
        margin-block-start: 0; 
        margin-block-end: 1%;
    }

        #subheading-homepage {
            font-size: 100%;
        }

    #quote-container {
        padding: 5%;
        margin: 8% 6%;
    }

        #quote-block span {
            font-size: 120%;
        }

        #quote-author span {
            font-size: 110%;
        }

    #smbuttons {
        margin-left: 0%;
        margin-right: 0%;
        gap: 10px;
    }

        #smbuttons a {
            padding: 14px 18px;
        }

        #smbuttons span {
            font-size: smaller;
        }

        #smbuttons img {
            max-width: 22px;
        }

#blockcontainer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
}

    #block {
        display: flex;
        flex-direction: column; 
        height: auto;
        width: auto;
        padding: 2.5%;
        border: solid;
        border-radius: 10px;
        background-color: rgb(190, 190, 190);
        border-color: lightslategray;
    }

        #block .titleblock {
            font-size: 80%;
        }

        #block .smallerfont {
            font-size: 65%;
        }

footer {
    padding: 4% 6% 8%;
}

    footer span {
        font-size: 95%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    header {
        padding: 1% 2%;
    }

        header #pfp {
            max-height: 50px;
        }

        #title {
            font-size: 150%;
        }

        nav a {
            padding: 14px 18px;
        }

        #dropdown #dropdown-button {
            padding: 14px 24px;
            font-size: 95%;
        }

main {
    margin: 2.5% 5% 6% 5% /* top and bottom | right and left */
}

    #mainpage {
        font-size: 100%;
        margin: 0;
    }

#mainpage {
    font-size: 100%;
}

    #blockcontainer {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: left;
    }
    
        #block {
            display: flex;
            flex-direction: column; 
            height: auto;
            width: auto;
            padding: 3%;
            border: solid;
            border-radius: 10px;
            background-color: rgb(190, 190, 190);
            border-color: lightslategray;
        }
    
            #block .titleblock {
                font-size: 75%;
            }
    
            #block .smallerfont {
                font-size: 65%;
            }

    #page-title-container {
        margin-bottom: 4%;
    }

        #page-title {
            font-size: 195%;
        }

    #heading-homepage {
        font-size: 225%;
        margin-block-start: 0; 
        margin-block-end: 1%;
    }

        #subheading-homepage {
            font-size: 100%;
        }

    #quote-container {
        padding: 4%;
        margin: 5% 7%;
    }

        #quote-block span {
            font-size: 120%;
        }

        #quote-author span {
            font-size: 110%;
        }

    #smbuttons {
        margin-left: 0;
        margin-right: 0;
        gap: 10px;
    }

        #smbuttons span {
            font-size: smaller;
        }

        #smbuttons img {
            max-width: 24px;
        }

footer {
    padding: 4% 6%;
}

    footer span {
        font-size: 100%;
    }

}

/* END */