.mainheader {
    margin: 5px auto;
    padding-top: 10px;
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: 4vw;
    background: linear-gradient(90deg, #9AC2E4, #E18348);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

body {
    background-color: #04070B;
    margin: 0;
    width: 100vw;
    height: auto;
    padding: 50px;
    width: 100%;
    min-height: 100%;
    display: grid;
    min-height: 100vh;
    overflow-y: hidden;
    overflow-x: hidden;
    grid-template-rows: auto;

    place-items: center;  /* Centers both vertically and horizontally */
}


.highlight {
    color: #E18348;
    cursor: pointer;
    position: relative; /* To position the tooltip box */
    text-decoration: underline;
}

.tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 1);
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    white-space: nowrap;
    text-align: left;
}

.tooltip img {
    display: block;           /* Makes the image a block element so it aligns properly */
    max-width: 100%;          /* Ensures the image doesn't overflow the tooltip */
    height: auto;             /* Keeps the aspect ratio of the image */
    margin-bottom: 8px;       /* Space between image and text */
    margin-left: 0;           /* Ensure it's aligned to the left */
}

.highlight:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.highlight:focus .tooltip {
    visibility: visible;
    opacity: 1;
}

.question {
    font-size: 18px;         /* Slightly larger text for the question */
    font-weight: bold;       /* Make the question bold */
    color: rgb(255, 255, 255);
    margin: px 0;          /* Add some space before and after the question */
    text-align: center;      /* Center the question */
}

.centered-text {
    max-width: 900px;          /* Control the width */
    padding: 10px;
    line-height: 1.6;          /* Line height for readability */
    background-color: #161616;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* margin-top: -200px; /* bad way to do it but it works! */
    grid-template-rows: auto;
}

.centered-text p {
    margin: 20px 0;            /* Space between paragraphs */
}

p {
    color: rgb(255, 255, 255);
    font-family: "Poppins", sans-serif;
}

/* 
footer {
    background-color: #0F1115;
} */

.footer-icons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 25px;
}

.footer-icons>button {
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    margin: 2px;

    height: 30px;
    width: 50px;
    transition: all 0.3s; 
}

.footer-icons>button:hover {
    cursor: pointer;
    transform: scale(1.1);
}