<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background: #1f2c39;
    color: white;
}
.bg-dark-blue {
    background: #13191f !important;
}
.text-white {
    color: #d1d0d0 !important;
    transition: 0.2s;
}
.navbar-brand {
    color: white !important;
}
.nav-item:hover {
    color: white !important;
    text-shadow: 0 0 10px #3498db, 0 0 20px #3498db;
}

    @keyframes rainbow {
        0% {
            background-position: right
        }

        100% {
            background-position: left+500px
        }
    }

    .animT {
    background: linear-gradient(45deg, rgba(255,4,4,1) 0%, rgba(255,254,1,1) 13%, rgba(21,255,6,1) 31%, rgba(0,255,224,1) 51%, rgba(9,28,252,1) 67%, rgba(255,0,234,1) 82%, rgba(255,0,0,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 500px;
    background-size: 4000% 100%;
    animation: rainbow 20s linear infinite;
    font-weight: bolder;
    font-size: 60px;
}
.text-center {
    display: grid;
    justify-content: center;
}

.photo-gallery {
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 80%;
    height: 80%;
    flex-wrap: wrap;
    margin-left: 10%;
}

    .photo-gallery p {
        width: 150px;
    }

.photo-area {
    width: 220px;
    height: 245px;
    position: relative;
}

.photo {
    width: 100%;
    border-radius: 5px;
    background-color: #13191f ; 
    color: white;
    padding: 10px;
    transition: 1s;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

    .photo:hover {
        transform: scale(120%);
        height: 400px;
        z-index: 10;
    }

    .photo h2 {
        font-size: 24px;
    }

.img-uniform {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 0px;
}

.team-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255,2555,255,0.4);
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    height: 75vh;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.team-member {
    text-align: center;
    width: 250px;
    border-radius: 5px;
    padding: 10px;
    background-color: #2b3035;
    color: #ececec;
    height: 320px;
}
.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    background: #13191f;
    border-radius: 10px;
}
.page-button {
    display: flex;
    justify-items: center;
    background: white;
    height: 35px;
    width: 35px;
    border-radius: 5px;
    margin-left: 10px;
    transition: 0.5s;
    border: solid #1f2c39 1px !important;
}
.page-button:hover {
    background: #1f2c39 !important;
    border: solid white 1px !important;
}
    .page-button:hover a {
        color: white;
    }
    .page-button a {
        color: black;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        text-decoration: none;
        transition: 0.5s;
    }
    .active {
        background: #1f2c39 !important;
        border: solid white 1px !important;
    }
        .active a {
            color: white;
        }</pre></body></html>