:root {
    --rosegold: #b76e79;
    --rosegold-light: #d6a5aa;
    --maroon: #800020;
    --silver: #c0c0c0;
    --white: #ffffff;
    --font-family: 'Lora', sans-serif;
}



.orca-top-container {
    position: relative;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-image: url('/images/orca-animgif2.gif');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.text-overlay-o {
    max-width: 90%;
    transform: translateY(-100%);
}

.text-overlay-o h1 {
    font-size: 5rem;
    font-weight: 500;
    color: var(--white);
    z-index: 1;
    font-family: var(--font-family);
}

.fade-element {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
  
.fade-in {
    opacity: 1;
}

.o-info-sub-container {
    height: 110vh;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

.o-info-one {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-align: center;
    font-family: var(--font-family);
    background: var(--maroon);
    color: var(--silver);
    padding: 0 8% 0 8%;
    text-align: justify;
    text-justify: distribute-all-lines;
}

.o-info-two-img {
    background-color: var(--maroon);
    background-image: url('/images/orca-face-new.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.o-info-three {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-align: center;
    font-family: var(--font-family);
    background: var(--maroon);
    color: var(--silver);
    padding: 0 8% 0 8%;
    text-align: justify;
    text-justify: distribute-all-lines;
}

.o-info-four-img {
    background-color: var(--maroon);
    background-image: url('/images/orca-bottom.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}