@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');

body{
    background-color: #0E0E0E;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    padding: 0;
    margin: 0;
    padding: 20px
}

header {
    display: block;
    flex-direction: column;
    align-items: center; /* Align content to the top of the section */
    place-items: center;
    margin: 0 auto;
}

button {
    width: 35px;
    height: 35px;

    background-color: #0A0A0A;
    text-decoration: none;
}

p {
    display: block;
}

.cardcontainer {
    display: flex;
    flex-direction: column;
    align-items: center; /* Align content to the top of the section */
    place-items: center;
    justify-content: space-between;
    align-content: center; /* Align content to the top of the section */

    margin-top: 50px;
}

.person-card {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #555;

    width: 660px;
    height: 94.5px;

    background: #0A0A0A;

    display: flex;
    flex-direction: row;

    margin-bottom: 20px;
}
.person-image {
    width: 94px;
    height: 94px;
    border-radius: 10px;
}
.person-textholder {
    width: 429px;
    height: 104px;

    margin-left: 15px;
}
.person-buttonholder {
    display: flex;
    flex-direction: column;

    margin-left: 75px;
}

.button-icon {
    width: 20px;
    height: 20px;

    filter: invert(1);
}

button {
    background: none;
    border: none;
    cursor: pointer;

    transition: all 0.25s;
}
button:hover {
    opacity: 50%;
}

.quote {
    white-space: nowrap;
}

@media only screen and (max-width: 600px) {
    .person-card {
        max-width: 300px; /* Adjusted max-width for better fit on small screens */
    }

    p {
        font-size: 10px;
    }
}

/* Normal link color */
a {
    color: #fff; /* Replace with your desired color */
    text-decoration: none;
    transition: all 0.3s;
}
  
/* Hover link color */
a:hover {
    color: #fff; /* Replace with your desired hover color */
    text-shadow: 0 0 10px rgba(255, 255, 255, 1);
}
  
.hidden {
    opacity: 0;
    filter: blur(5px);
    transition: all 0.5s;
}
.show {
    opacity: 1;
    filter: blur(0px);
}

.header {
    display: block;
    color: white;

    font-size: 64px;
    font-family: Inter;
    font-weight: 400;
    line-height: 80px;
    word-wrap: break-word;
    text-align: left; /* Left-align the text within the header */
    margin-bottom: 20px; /* Add some bottom margin to separate header and writing */
    max-width: 800px;
    margin: 0 auto;

    background: linear-gradient(90deg, 
        rgb(255, 179, 179), 
        rgba(255, 255, 179), 
        rgba(179, 255, 179), 
        rgba(179, 255, 255), 
        rgba(179, 179, 255), 
        rgba(255, 179, 255), 
        rgba(255, 179, 179),
        rgba(255, 255, 179),
        rgba(179, 255, 179),
        rgba(179, 255, 255), 
        rgba(179, 179, 255),
        rgba(255, 179, 255),
        rgba(255, 179, 179)
    );
    background-size: 200% 100%;
    animation: rainbowAnimation 5s linear infinite;
    -webkit-background-clip: text; /* Clip text to the background gradient */
    -webkit-text-fill-color: transparent; /* Make the text transparent so the background gradient is visible through text */

}

@keyframes rainbowAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.writing {
    color: white;
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 17.50px;
    word-wrap: break-word;
    max-width: 800px; /* Set a maximum width for the text */
    margin: 0 auto; /* Center the text within the section */
    text-align: left; /* Left-align the text within the writing */
    text-shadow: 4px 0px 10px rgba(255, 255, 255, 0.50);
}