body {
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    text-align: center;
    margin: 0;
}

hr {
    margin: 0;
}

.genOne {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

ul {
    padding: 0;
    /* margin-left: 24px; */
    margin-right: 24px;
}

li {
    font-size: 30px;
    list-style-type: none;

}

/* .color-dom {
    color: rgb(150, 41, 41);
} */

/* .color-rec {
    color: lightblue;
} */

/* .color-special {
    color: rgb(2, 193, 2);
} */

.border-rec {
    border: 1px solid black;
    border-radius: 5px;
    padding: 3px;
}

.first {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.TurdBoy {
    height: 80px;
    width: 80px;
    margin-top: 12px;
    margin-bottom: 12px;
    border: 1px solid black;
    border-radius: 50%;
    position: relative;
}

.TurdBoy-eye1 {
    height: 20px;
    width: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    border: 1px solid black;
    border-radius: 50%;
    position: absolute;
    margin-left: 10px;
}

.TurdBoy-eye2 {
    height: 20px;
    width: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    border: 1px solid black;
    border-radius: 50%;
    position: absolute;
    margin-left: 48px;
}

.TurdBoy-mouth {
    height: 2px;
    width: 20px;
    margin-top: 58px;
    margin-bottom: 12px;
    border: 1px solid black;
    background-color: black;
    position: absolute;
    margin-left: 29px;
}

.face {
    display: flex;
}

.gen-one, .gen-two, .gen-three, .gen-four, .tim-eric {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.gen-one-face {
    height: 100px;
    width: 100px;
    border: 2px solid black;
}

.gen-two-face {
    height: 80px;
    width: 80px;
    border: 2px solid black;
}

.gen-three-face {
    height: 70px;
    width: 70px;
    border: 2px solid black;
}

spacer {
    width: 40px;
}

small-spacer {
    width: 10px;
}

.face-name {
    text-align: center;
}

.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 5px;
    padding: 10px;
    font-size: 12px;
    max-width: 200px;
    pointer-events: none; /* Prevents the tooltip from blocking mouse events */
}

.tooltip {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.tooltip.show {
    opacity: 1;
}

.face:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6); /* Green glow */
    cursor: pointer;
}

button {
    background: linear-gradient(to right, rgb(193, 193, 255), rgb(190, 255, 190));
    border-radius: 16px;
    padding: 5px 12px;
    font-weight: bold;
    margin: 0 auto;
    display: block;
    margin-top: 16px;
}

.mutation-text {
    right: 8px;
    position: fixed;
    background-color: rgb(146, 203, 246);
    padding: 8px;
    border: 0;
    border-radius: 15px;
}

.mutation-text p {
    margin: 0;
    padding: 0;
}

.info-1-div {
    left: 8px;
    position: fixed;
    background-color: rgb(146, 203, 246);
    padding: 0px;
    margin: 0;
    border: 0;
    border-radius: 15px;
    max-width: 30%;
}

.info-2-div {
    left: 8px;
    top: 87px;
    position: fixed;
    background-color: rgb(146, 203, 246);
    /* padding: 8px; */
    border: 0;
    border-radius: 15px;
    max-width: 30%;

    visibility: hidden;  /* Make it invisible */
    opacity: 0; 
    transition: opacity 0.8s ease, visibility 0s linear 0.8s; /* Use visibility for hiding */
}

.info-3-div {
    left: 8px;
    top: 147px;
    position: fixed;
    background-color: rgb(146, 203, 246);
    /* padding: 8px; */
    border: 0;
    border-radius: 15px;
    max-width: 14%;

    visibility: hidden;  /* Make it invisible */
    opacity: 0; 
    transition: opacity 0.8s ease, visibility 0s linear 0.8s; /* Use visibility for hiding */
}

.info-2-div.show {
    visibility: visible;  /* Make it visible */
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0s linear 0s; /* Keep the transition for opacity */
}

.info-3-div.show {
    visibility: visible;  /* Make it visible */
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0s linear 0s; /* Keep the transition for opacity */
}

.info-1 {
    margin: 0;
    padding: 8px;
}

/* .info-1 p, .info-2 p, .info-3 p {
    margin: 0;
    padding: 0;
} */

/* Initially hide info-2 */
.info-2, .info-3 {
    margin: 0;
    padding: 8px;
    visibility: hidden;  /* Make it invisible */
    opacity: 0; 
    transition: opacity 0.8s ease, visibility 0s linear 0.8s; /* Use visibility for hiding */
} 

/* When show class is added, make info-2 visible */
.info-2.show, .info-3.show {
    visibility: visible;  /* Make it visible */
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0s linear 0s; /* Keep the transition for opacity */
}

/* Ensure .info-1 is not affected */
/* .info-1-div {
    visibility: visible; /* Makes sure it's visible */
    /* opacity: 1; Ensures the text is visible */
/* } */

button[hidden] {
    display: none;
}

.master {
    display: flex;
    width: 100%;
}

.sub-master {
    width: 100%;
}

p {
    line-height: 1.4;
}