*, :root {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    transition: 0.3s;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(to top, #02023f, #000000);
    color: #ffffff;
}

iframe {
    border: none;
}

h1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;

    font-weight: 1000;
    font-size: 2.2em;

    padding: 0.2em 0.2em 0;
}

span {
    font-size: 1em;
}
.tab-container {
    display: flex;
    padding: .3em .3em 1em;
    @media (max-width: 800px) {
        justify-content: center;
    }
    border-bottom: white 1px solid;
}
.tab-item {
    margin: 0 0.5em;
    padding: 0.5em;
    border: #b139ad 1px solid;
    border-radius: 1em;
    cursor: pointer;
    font-size: 1.2em;
    @media (max-width: 800px) {
        font-size: 1em;
    }
    color: white;
    background: transparent;
}
.tab-item:hover {
    background: rgba(125, 7, 179, 0.47);
    box-shadow: 0 0 10px #b139ad;
}

.content {
    margin: 50px 50px 50px;
    display: flex;
    flex-direction: column;

    @media (max-width: 800px) {
        margin: 30px 40px 40px;
    }
}

/* Basic styling */
.pronouns {
    position: relative; /* Required for absolute positioning of hover content */
    display: inline-flex;
    background-color: #b139ad;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    margin: 0.75rem;
}

/* Hover content styling */
.hover-content {
    display: none; /* Hide the content by default */
    position: absolute;
    top: -50%; /* Position below the hover container */
    left: 130%;
    padding: 10px;
    background-color: #333;
    color: white;
    border-radius: 4px;
    white-space: nowrap; /* Prevent text from wrapping */
    font-weight: 120;
    font-size: 70%;
}

/* Show the hover content when hovering over the container */
.pronouns:hover .hover-content {
    display: block;
}
