* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    font-family: Arial, sans-serif;
    text-align: center;
}

#background-video {

    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}


.quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 600px;
    padding: 20px;
    background: black;
    opacity: 0.7;
    /* Makes the entire div 70% opaque */
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    /* Added shadow */
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.quote-container:hover {
    transform: scale(1.05);
    box-shadow: 12px 12px 25px rgba(0, 0, 0, 0.4);
    /* Slightly deeper shadow on hover */
}


#quoteText {
    text-wrap: balance;
    font-size: clamp(1.2rem, 5vw, 2.3rem);
    /* font-size: 2.5rem; */
    /* Increased size */
    font-family: 'Homemade Apple', cursive;
    /* color: white; */

    /* font-size: 24px; */
    /* font-weight: bold; */
    display: inline-block;
    background: linear-gradient(to right, white, rgb(245, 208, 245), white, rgb(173, 216, 230), white);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: colorShift 10s linear infinite;
}

@keyframes colorShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

#quoteAuthor {
    font-size: 1.8rem;
    /* Larger than before */
    font-family: 'Homemade Apple', cursive;
    color: white;
}

.small-text {
    font-size: 1.5rem;
}

.medium-text {
    font-size: 1.2rem;
}

.large-text {
    font-size: .0001rem;
    line-height: .8;
    /* Adjusts spacing to keep text readable */
}


@media (max-width: 600px) {
    .small-text {
        font-size: 2.3rem;
    }

    .medium-text {
        font-size: 1.9rem;
    }

    .large-text {
        font-size: 1.6rem;
    }

    /* .small-text {
        font-size: 1.5rem;
    }

    .medium-text {
        font-size: 1.2rem;
    }

    .large-text {
        font-size: 1rem;
    } */

    /* .quote-container {
        width: 95%;
        padding: 15px;
    }

    #quoteText {
        font-size: 2.3rem;
    }

    #quoteAuthor {
        font-size: 1.3rem;
    } */
}

footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 0.8rem;
}

#copyright {
    font-weight: bold;
    font-size: 1rem;
    color: white;
}

footer a {
    color: white;

    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
}

footer a:hover {
    /* text-decoration: underline;
    color: #B3E0FF */
    /* Changes to white on hover */

    /* font-size: 24px; */
    font-weight: bold;
    background: linear-gradient(to right, lightblue, rgb(84, 84, 158));
    -webkit-background-clip: text;
    color: transparent;
    animation: moveGradient 5s linear infinite;

}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.fa-linkedin {
    font-size: 1.5rem;
    /* Adjust icon size */
    color: white;
    /* LinkedIn official blue */
    margin-left: 10px;
}

.fa-linkedin:hover {
    color: #005582;
    /* Darker blue on hover */
}