    
/* Common style */

/* unvisited link */
    a:link {
    color: #d4cbfd;
    }

    /* visited link */
    a:visited {
    color: #6d4aff;
    }

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

    /* selected link */
    a:active {
    color: #fff;
    }

    .hr {
    color: #9e8fdf;
    }

    .input-box {
    border: 1px solid #9e8fdf;
    border-width: 1px;
    border-radius: 10px;
    padding:8px;
    margin:2px;
    margin-right:10px;
    }

    .input-box-large {
    border: 1px solid #9e8fdf;
    background-color: #1b1340;
    color:#d4cbfd;
    border-width: 1px;
    border-radius: 10px;
    padding:8px;
    margin:2px;
    width:230px;
    }

    .top-right {
    display: flex;
    position:fixed;
    top:0;
    right:0;
    }

    .messages {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    margin: 0 auto;
    width: 50%;
    opacity: 0.8;
    }
    
    .messages li {
    padding: 10px;
    margin: 30px 0;
    border-radius: 10px;
    background-color: #6d4aff;
    color: #fff;
    font-size: 14px;
    text-align: center;
    list-style: none;
    }

    .alert {
    position: relative;
    opacity: 0.85;
    padding: 12px;
    padding-left: 70px;
    padding-right: 70px;
    margin-bottom: 10px;
    border-radius: 4px;
    text-align: center;
    }
    .alert:first-child {
    margin-top: 30px;
    }

    .alert-for-popup {
    opacity: 0.9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    text-align: center;
    }

    .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    }

    .alert-success {
    background-color: #76bb57;
    color: #0b6822;
    border: 1px solid #329c24;
    }

    .alert-warning {
    background-color: #ddce76;
    color: #6e6919;
    border: 1px solid #ddce76;
    }

    .alert-info {
    background-color: #914bb9;
    color: #720f75;
    border: 1px solid #914bb9;
    }

    .close-button {
    position: absolute;
    top: 3px;
    right: 3px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    }

    .input-form {
    padding:50px;
    }

    .form-label {
    display: inline-block;
    width: 180px; /* Change this value to adjust the label width */
    }

    input[type="text"],
    input[type="email"],
    input[type="password"] {
    display: inline-block;
    margin-left: 10px; /* Change this value to adjust the space between the label and input box */
    }
      
    .popup-button {
    padding: 7px;
    text-align: center;
    justify-items: center;
    color: #120a29;
    font-weight: bold;
    font-size: large;
    margin-left:65px;
    background-color: #fff;
    border-style: none;
    border-width: 2px;
    border-radius: 12px;
    margin-top:10px;
    cursor:pointer;
    }

    .message-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 9999; /* Ensures the container floats above all other elements */
    padding: 10px;
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:15px;
    }

/* Common home page style */

    body {
    margin: 0;
    padding: 0;
    font-family:bahnschrift;
    height: 100vh;
    position: relative;
    cursor: default;
    }

    body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#070707, #120a29, #351490);
    z-index: -1;
    }

    ::-webkit-scrollbar {
    width: 8px;
    }
    
    ::-webkit-scrollbar-track {
    background: linear-gradient(#070707, #120a29, #351490);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding:10px;
    }
    
    ::-webkit-scrollbar-thumb {
    background: #d4cbfd; /* light violet rounded thumb */
    border-radius: 8px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
    background: #9e8fdf;
    }
    
    .header {
    display:flex;
    justify-content: flex-start;
    align-items: center;
    padding-left:20px;
    height: 70px;
    width: 400px;
    background: #1b1340;
    color: #d4cbfd;
    font-family: bahnschrift, sans-serif;
    }

    .container-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    }

    .test-border {
    border-color: #d4cbfd;
    border-width: 2px;
    border-style:dotted;
    }
    
    .button-highlight {
    background-color: #6d4aff;
    color: white;
    Width : 250px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    border-style: none;
    z-index: 2;
    }

    .button-transparent {
    display: inherit;
    background-color: transparent;
    border-style: none;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    }

    .button-dark,
    .button-darker{
    background-color: transparent;
    border-style: solid;
    border-radius: 7px;
    border-width: 1px;
    border-color: #493796;
    color: #d0cbe7;
    padding: 10px 20px;
    margin:0.5rem;
    font-weight: bolder;
    cursor: pointer;
    }

    .button-dark:hover {
    background-color: #493796;
    }

    .button-darker:hover {
    background-color: #110b29;
    border-color:#493796;
    box-shadow: 0 0 15px rgba(0, 0, 0, 1);
    transition: background-color 0.2s, color 0.5s, box-shadow 0.3s;
    }
    
    .wrapper-button-right {
    display:flex;
    width:100%;
    justify-content: center;
    align-items:center;
    width:100%;
    }

    .separator-button {
    width: 1px;
    height: 2.5rem;
    margin:0.5rem;
    background-color: #9e8fdf;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
    }

    .a-none {
    all: inherit;
    text-decoration: none;
    }

    .a-none:hover {
    color: inherit;
    text-decoration: none;
    }

    .sub-title {
    padding: 5px;
    }

    .sub-text {
    font-size:smaller;
    font-weight:300;
    color:#6d4aff;
    }

    .sub-text-inline {
    font-size:smaller;
    font-weight:300;
    color:#6d4aff;
    float: right; /* or right */
    clear: none; /* or left or both */
    }

    .small-icon {
    padding: 8px;
    padding-top: 15px;
    }

    .wrapper {
    position:fixed;
    display: flex;
    flex-direction:row;
    width:500px;
    }

    .h-wrapper {
    display: flex;
    flex-direction:column;
    padding:6px;
    align-items:end;
    }

    .topcorner{
    display: flex;
    position:fixed;
    top:0;
    right:0;
    color: white;
    padding: 10px;
    padding-right: 15px;
    z-index: 2;
    }

    .bottom-center{
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    }

    .icon-bordering {
    border-style: solid;
    border-color: #351490;
    border-width: 2px;
    border-radius: 8px;
    padding: 10px;
    }

    .text-icon-bordering {
    text-align: center;
    border-style: solid;
    border-color: #351490;
    border-width: 2px;
    border-radius: 8px;
    padding: 10px;
    }

    .text-icon-normal {
    padding:5px;
    }

    .popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
    z-index: 9999; /* ensure the popup appears on top of other elements */
    justify-content: center;
    align-items: center;
    }
    
    .popup-content {
    display:flex;
    flex-direction: column;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    justify-content: center;
    }

    .popup-title {
    font-size:larger;
    color: #120a29;
    text-align: center;
    padding-bottom: 20px;
    }

    .popup-action {
    font-weight: bold;
    text-align: right;
    padding-right:10px;
    cursor: pointer;
    }

    .popup-text {
    color: #120a29;
    padding: 10px;
    padding-bottom:2px;
    margin: 0;
    }

    .popup-button {
    padding: 7px;
    text-align: center;
    color: #120a29;
    font-weight: bold;
    font-size: large;
    background-color: #fff;
    border-style: none;
    border-width: 2px;
    border-radius: 12px;
    margin-top:10px;
    cursor:pointer;
    }

    .popup-button:hover {
    background-color: #d4cbfd;
    }

    .popup-link{
    color:#6d4aff;
    font-weight: bold;
    cursor:pointer;
    }

    /* Common card styles */

    .contour-1px {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    }

    /* Information card styles */

    .info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    text-align: center;
    width:1000px;
    color:white;
    margin-top:30px;
    }

    .info-card:first-child {
    margin-top: 100px;
    }

    .info-card:last-child {
    margin-bottom: 100px;
    }

    .info-card-left {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-items: left;
    text-align: left;
    width:1000px;
    color:white;
    margin-top:30px;
    }

    .info-card-left:first-child {
    margin-top: 100px;
    }

    .info-card-left:last-child {
    margin-bottom: 100px;
    }

    .info-card-bottom-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
    padding-top:60px;
    }

    .info-card-title {
    display: flex;
    align-self:flex-start;
    justify-content: center;
    align-items:center;
    background-color: #1b1340;
    color:#9e8fdf;
    font-size:large;
    width: 160px;
    height : 40px;
    border-top-left-radius: 7px;
    border-bottom-right-radius: 20px;
    }

    .info-card-sub-title {
    color:#9e8fdf;
    padding-left:20px;
    border-width:0.5px;
    margin-top:25px;
    font-size: large;
    }

    hr {
    border-color: #1b1340;
    margin-bottom:40px;
    }

    .info-card-note {
    color:#d4cbfd;
    margin-top:25px;
    margin-left: 60px;
    margin-right:60px;
    background-color: #1b1340;
    border-radius:10px;
    padding:15px;
    }

    /* game card styles */

    .game-card {
    background-color: #353535;
    color:#9f9f9f;
    border-color: #1e1a28;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8);
    }

    .game-card-left:first-child {
    margin-top: 100px;
    }

    .game-card-left:last-child {
    margin-bottom: 100px;
    }
    
    .game-card-title {
    background-color: #1e1d1d;
    color:#d1d1d1;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
    }

    .game-card-note{
    background-color: #2f2f2f;
    color:#c9c9c9;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    }
    
    .game-card-p-title {
    color:#9f9f9f;
    border-width:0.5px;
    padding:3px;
    padding-right:1rem;
    padding-left:1rem;
    font-size: large;
    background-color: rgba(37, 37, 37, 0.3);
    border-radius: 5px;
    }

    .game-container {
    display:flex;
    justify-content: center;
    margin-top:1rem;
    margin-bottom:1rem;
    padding-top:1rem;
    padding-bottom:1rem;
    background: #3b3b3b;
    width:100%;
    border-bottom: 1px solid rgb(54, 54, 54);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .game-container-bottom {
    padding: 0;
    margin: 0;
    width:100%;
    border-bottom: 1px solid black;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #262626;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
    }

    .item-frame {
    width: 25px;
    height: 25px;
    background: linear-gradient(to top, rgba(63, 63, 63, 1), rgba(87, 87, 87, 1));
    text-align: center;
    line-height: 25px;
    font-weight: bold;
    color: #c9c9c9;
    font-size: medium;
    border-radius: 3px;
    border-style:solid;
    border-color:#474747;
    border-width: 1px;
    margin-left: auto;
    padding: 0 10px;
    }

    /* game card elements */
    .game-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width:700px;
    }

    .game-list li {
    position: relative;
    display: flex;
    align-items: center;
    height: 3rem;
    font-size: large;
    border-bottom: 1px solid black;
    border-radius: 5px;
    background: #262626;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
    width:100%;
    margin:20px;
    }

    .item-dot {
    display: block;
    width: 15px;
    height: 15px;
    color: #353535;
    font-size: large;
    text-align: center;
    padding:1rem;
    }

    .item-content {
    flex-grow: 1;
    padding: 10px;
    display: flex;
    align-items: center;
    }

    .game-list-separator {
    width: 2px;
    background-color: #3c3c3c;
    height: 2.9rem;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    }

    .square-button {
    width: 25px;
    height: 25px;
    background: linear-gradient(to top, rgba(63, 63, 63, 1), rgba(87, 87, 87, 1));
    text-align: center;
    line-height: 25px;
    font-weight: bold;
    color: #c9c9c9;
    font-size: medium;
    border-radius: 3px;
    border-style:solid;
    border-color:#474747;
    border-width: 1px;
    margin-left: auto;
    padding: 0 10px;
    }

    .game-list-button {
    background-color: #6d4aff;
    color: white;
    Width : auto;
    padding: 7px;
    margin:5px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    border-style: none;
    z-index: 2;
    }

    /* text styles */

    .text {
    color:#d4cbfd;
    padding: 10px;
    margin: 0;
    }

    .grey-text{
    color:#c9c8d1;
    padding: 10px;
    margin: 0;
    }

    .highlight-text{
    color:#9264fd;
    font-weight: bold;
    margin: 0;
    }

    .small-text {
    color:#d4cbfd;
    padding: 10px;
    margin: 0;
    font-size: small;
    }

    .normal-text {
    color:grey;
    font-size:normal;
    padding:5px;
    }

    .text-caption {
    color:#6d4aff;
    padding: 5px;
    margin: 0;
    font-size: medium;
    }

    .help-text {
    color: gray;
    font-size: 12px;
    }

    #scene-container {
        position: relative;
        height: 100%;
        width: 100%;
        opacity: 0; /* Start with no opacity */
    }

    #scene-container.fade-in {
        animation: fadeInAnimation 6s ease-in-out forwards;
    }

    @keyframes fadeInAnimation {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Style for the image container */
    .image-container {
        position: relative;
        display: inline-block;
    }

    /* Style for the image */
    .image-container img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    /* Style for the text overlay */
    .overlay-text {
        position: absolute;
        top: 110%;
        left: 50%;
        transform: translate(-30%, -30%);
        background-color: rgba(0, 0, 0, 0.4); /* Background color with some transparency */
        color: #fff; /* Text color */
        padding: 10px 20px;
        border-radius: 5px;
        margin: -30%; /* Margin to make the container wider by 20% on each side */
    }

    .overlay-text-top {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-28%, -28%);
        background-color: rgba(0, 0, 0, 0.1); /* Background color with some transparency */
        color: #fff; /* Text color */
        padding: 10px 20px;
        border-radius: 5px;
        margin: -20%; /* Margin to make the container wider by 20% on each side */
    }

    .overlay-text-down {
        position: absolute;
        bottom: 18%;
        left: 50%;
        transform: translate(-30%, -30%);
        background-color: rgba(0, 0, 0, 0.3); /* Background color with some transparency */
        color: #fff; /* Text color */
        padding: 5px 20px;
        border-radius: 5px;
        margin: -15%; /* Margin to make the container wider by 20% on each side */
    }

    .column-container {
        display: flex; /* Use flexbox for layout */
        align-items: center; /* Vertically center content */
        justify-content: space-between; /* Add space between columns */
        padding:10px;
        padding-left: 40px;
    }

    /* Style for the left and right columns */
    .column {
        flex: 1; /* Distribute space evenly between columns */
        padding: 5px; /* Add padding for spacing */
    }

    /* Style for the separator between columns */
    .separator {
        width: 1px; /* Set the width of the separator */
        background-color: rgb(97, 97, 97); /* Separator color (white for black background) */
        height: 20rem; /* Adjust the height as needed */
    }

    /* TABLE AND LIST */

    table {
        width: 56rem;
        margin: 1.2rem auto;
        border-collapse: collapse;
        border-bottom: 3px solid black;
    }
    
    thead {
        background-color: rgba(0, 0, 0, 0.7);
        color: #d4cbfd;
    }

    tbody {
        font-weight:lighter;
        font-size: small;
        color:#c9c8d1;
    }
    
    thead th, tbody td {
        border: none;
        padding: 0.2rem;
        padding-left:0.6rem;
        text-align:left;
        vertical-align: top;
    }
    
    tbody tr:nth-child(odd) {
        background-color: rgba(0, 0, 0, 0.25);
    }
    
    ul {
        list-style: none;
        padding: 0;
    }
    
    .item-list {
        height: 1.5rem;
        margin-bottom: 6px;
        padding: 0.1rem 0.7rem;
        border: 1px solid rgba(77, 77, 77, 0.3);
        background: linear-gradient(to bottom, rgba(90, 90, 90, 0.0), rgba(95, 95, 95, 0.1));
        border-radius: 3px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        transition: background-color 0.5s, color 0.5s; /* Add transition for smooth hover effect */
    }
    
    .item-list::before {
        content: "►";
        color: #c9c8d1;
        font-size: smaller;
        margin-right: 0rem;
    }
    
    .item-list p {
        font-size: 14px;
        font-weight: lighter;
        color: #c9c8d1;
    }
    
    /* Add hover styles */
    .item-list:hover {
        background: linear-gradient(to bottom, rgba(90, 90, 90, 0.1), rgba(95, 95, 95, 0.4)); /* Lighten background color */
        color: #ffffff; /* Change font color on hover */
    }
    
    /* List for badges and items */

    .user-container {
    display: flex;
    flex-direction: column;
    width: 60%;
    justify-items: center;
    align-self: center;
    margin:20px;
    }

    .list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid with minimum width of 250px */
    gap: 20px; /* Gap between items */
    width: 90%; /* Takes the width of the parent container */
    align-content: flex-start; /* Align items at the top */
    align-self: center;
    margin:20px;
    }
    
    .list-item {
    display: flex;
    background-color: #262626;
    padding: 15px;
    border-radius: 4px;
    align-items: center;
    }
    
    .icon-container {
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .list-text-container {
    margin-left: 20px;
    color: #fff;
    text-align: left;
    }
    
    .list-title {
    font-weight: bold;
    font-size: medium;
    margin:0px;
    }
    
    .list-description {
    color: grey;
    font-size:small;
    margin:0px;
    }

    .list-date {
    color: grey;
    font-size:x-small;
    font-style: italic;
    margin:0px;
    }

    /* Generic item list for in-game elements */

    .solid-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px; /* Constant Gap between items */
    justify-content: center; /* Horizontally center items within the grid */
    align-items: center; /* Vertically center items within the grid */
    width: auto; /* Let the container adjust to its content */
    max-width: 90%; /* Ensure it doesn't exceed the available space */
    }
    
    .solid-list-item {
    display: flex;
    background-color: #262626;
    padding: 15px;
    border-radius: 4px;
    align-items: center;
    height: 20px;
    width: 60px;
    }
      
    /* Footer */

    .build-sticker {
        display: flex;
        position:fixed;
        bottom:0;
        left:0;
        font-size: x-small;
        color: #5bbed6;
    }

    /* Cookie bar*/
    body.with-cookie-bar {
        padding-top: 35px;
    }
      
    .cookie-bar {
        display:flex;
        flex-direction: column;
        background-color: #fff;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        justify-content: center;
        position: fixed;
        bottom:45px;
        right:40px;
        text-align: center;
        color:rgb(0, 0, 0);
        height: 450px;
        width:450px;
        line-height: 25px;
    }

    .popup-title {
        top:0px;
        font-size:larger;
        color: #120a29;
        text-align: center;
        padding-bottom: 20px;
    }

    .cookie-button {
        padding: 7px;
        text-align: center;
        justify-items: center;
        color: #120a29;
        font-weight: bold;
        font-size: large;
        margin-left:65px;
        background-color: #fff;
        border-style: none;
        border-width: 2px;
        border-radius: 12px;
        margin-top:10px;
        cursor:pointer;
    }

    .site-footer {
        position: relative; /* Relative positioning to push it after the content */
        clear: both; /* Clear any floating elements above */
        width: 100%; /* Occupies full width of the page */
        height: 12rem;
        background: #262626; /* Vertical gradient background */
        /*box-shadow: 0px -3px 2px rgba(0, 0, 0, 0.2), 0px 2px 4px rgba(0, 0, 0, 0.9);*/
        margin-top: auto; /* Push the footer to the bottom */
        border-top: 4px solid rgb(29, 29, 29); /* Add a top border */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-footer::before {
        content: "";
        position: absolute;
        top: -2px; /* Adjust this to control the shadow thickness */
        left: 0;
        width: 100%;
        height: 2px; /* Adjust this to control the shadow thickness */
        box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.9),0px 180px 25px rgba(0, 0, 0, 1); /* Inner shadow effect */
        border-top: 1px solid rgb(19, 19, 19); /* Add a top border */
    }

    .site-footer-slim {
        position: relative;
        clear: both;
        width: 100%; 
        height: 4rem;
        background: #262626;
        margin-top: auto;
        border-top:3px solid rgb(29, 29, 29);
        display: flex;
        align-items: center;
        justify-content: right;
    }

    .site-footer-slim::before {
        content: "";
        position: absolute;
        top: -2px; /* Adjust this to control the shadow thickness */
        left: 0;
        width: 100%;
        height: 2px; /* Adjust this to control the shadow thickness */
        box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.5),0px 3.8rem 12px rgba(0, 0, 0, 0.5); /* Inner shadow effect */
        border-top: 1px solid rgb(19, 19, 19); /* Add a top border */
    }
    
    .footer-content {
        display: flex;
        align-items: center;
        justify-content: center; /* Center content horizontally */
        width:50%;
    }

    .footer-content-slim {
        display: flex;
        align-items: center;
        justify-content: center; /* Center content horizontally */
        width:10%;
    }

    /* Style each footer section */
    .footer-info,
    .footer-socials,
    .footer-contact {
        flex: 1; /* Equal width for all sections */
        text-align: center; /* Center-align the content */
        padding: 1rem; /* Add some spacing around each section */
    }

    /* Add black line separators between sections */
    .footer-separator {
        width: 1px;
        height: 9rem;
        background-color: rgb(26, 26, 26);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    }

    .footer-separator-slim {
        width: 1px;
        height: 2rem;
        background-color: rgb(26, 26, 26);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    }

    /* Add your footer content styling here */
    .site-footer p {
        color: #707070;
        padding: 1rem;
        text-align: center;
        font-weight:bold;
        font-size: 0.7rem;
    }

    .footer-image {
        margin-left: 4rem; /* Adjust as needed to create spacing between content and image */
        margin-top:0.5rem;
    }

    .footer-image-slim {
        margin-top:0.1rem;
        padding-right:2rem;
    }

    .footer-logo {
        padding:0.5rem;
    }