/* PKGH { */

    .alumni { 
        font-family: alumni;
    }
    
    @font-face {
        font-family: "alumni";
        src: url("/fonts/AlumniSansCollegiateOne-Regular.ttf");
    }

    .photo-container img {
        transition: scale .8s;
    }
    

    .photo-container {
        position: relative;
     }
    

     .photo-container img:last-child {
        position: absolute;
        top: 0;
        left: 0;
        scale: 0; 
        object-fit: cover;
        width: 100%;
        height: 100%;
     }    

    .photo-container:hover img:first-child {
        scale: 0;
    }
    
    .photo-container:hover img:last-child {
        scale: 1;
    }


    /* PKGH */
    .photo-container {
        overflow: hidden;
        border-radius: 10px;
        transition: transform 0.3s;
    }
    .photo-container img {
        transition: transform 0.4s;
    }
    .photo-container:hover img {
        transform: scale(1.1);
    }
    /* PKGH */
    
    .counter-figure {
        font-size: x-large;
    }

    .slidein {
        animation: 1s slidein;
    }
    
    @keyframes slidein {
        from {
          transform: translateX(100%);
        }
      
        to {
          transform: translateX(0%);
        }
    }
    
    .logo {
        width: 2rem;
    }
    
    .name {
        font-size: 2rem;
        text-shadow: 0 0 30px white, 0 0 30px white, 0 0 30px white, 0 0 30px white, 0 0 30px white;
    }

    .form-check-input, .form-check-label {
        cursor: pointer;
    }    
    
    /* } PKGH */
    