
* {
    background-color: rgb(238, 242, 238);
    font-family: "Arial-Narrow", Arial, sans-serif;
}
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.summary {
    color: #555;
    list-style: none;
    text-align: center;
    padding-bottom: 0.2rem;
}
#total {
    font-size: 0.95rem;
    color: #555;
}
#sub {
    font-style: italic;
    font-size: 0.9rem;
}
h2 {
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 2rem 1rem 0 1rem;
    font-size: 1.2rem;
}
img {
    display: block;
    margin-inline: auto;
}
#abc img, 
#de img,
#fg img,
#hij img, 
#klm img {
    max-width: 80%;
    transition: transform 0.3s ease;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.153);

}
#abc:hover img, 
#de:hover img,
#fg:hover img,
#hij:hover img, 
#klm:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
p {
    padding: 0 1rem;
    text-align: justify;
    font-size: 0.9rem;
}
section {
    border-bottom: 1px solid #ccc;
}
#equipment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    list-style: none;
}
#equipment li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding-top: 1.5rem;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 200;
}
.equipment-list img {
    max-width: 80%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.204);
    transform: scale(1);
    
}
.equipment-list img:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    transform: scale(1);
}
#about p {
    font-size: 0.9rem;
    font-weight: 200;
    padding: 1rem;
}
.vale,
.climate,
.hunting, 
.reservior,
.map {
    max-width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.153);
}
.map {
    max-width: 50%;

    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.153);
    transform: scale(1);
    transition: transform 0.3s ease;
}
.reservior,
.hunting {
    max-width: 80%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.153);
    transform: scale(1);
    transition: transform 0.3s ease;
}
.map:hover, 
.hunting:hover,
.reservior:hover {
    transform: scale(1.03);
}
/* h1 animation */
h1 {
    text-align: center;
    display:inline-block;
    padding-bottom: 2rem;

    background: linear-gradient(90deg, #000, #41803d, #000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    color: transparent;

    animation: 
        popIn 0.8s ease-out forwards,
        gradientSweep 2s ease forwards 0.2s,
        lockColor 0s linear forwards 1s;

}
/* h1 animation */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    70% {
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes gradientSweep {
    from {
        background-position: 0%;
    }
    to {
        background-position: 200%;
    }
}
@keyframes lockColor {
    to {
        background: none;
        -webkit-background-clip: initial;
        color: #000;
    }
}

/* wide screen */
@media screen and (min-width: 768px) {

}