/* Rotary Club of South Cowichan Tribute Page */


body {
    margin: 0;
    padding: 0;
    background: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #005DAA;
}


/* Header area */

.intro {
    padding: 25px 15px 10px;
}


.header-content {
    max-width: 900px;
    margin: 0 auto;
}


/* Rotary logo placeholder */

.logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}


/* Main title */

h1 {
    margin: 10px 0 5px;
    font-size: 2.4rem;
    color: #005DAA;
}


h2 {
    margin: 0 0 20px;
    font-size: 1.4rem;
    font-weight: normal;
    color: #F7A81B;
}


/* Tribute text */

.tribute-text {

    margin: 12px 0;

    line-height: 1.5;

    color: #555;

    font-size: 1.1rem;

}


/* Photo area */

#slideshow {

    height: calc(100vh - 330px);

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

}


#photo {

    max-width: 95%;
    max-height: 95%;

    object-fit: contain;

    animation: slowzoom 8s ease-in-out infinite;

}


/* Ken Burns effect */

@keyframes slowzoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}


/* Footer */

footer {

    padding: 15px;

    color: #555;

    font-size: .95rem;

}


footer strong {

    color: #005DAA;

}



/* Mobile / iPad */

@media screen and (max-width:700px) {


    h1 {
        font-size: 1.7rem;
    }


    h2 {
        font-size: 1.2rem;
    }


    .tribute-text {
        font-size: 1rem;
    }


    #slideshow {

        height: calc(100vh - 270px);

    }

}