body {
    font-family:Copperplate, Papyrus, fantasy;
    font-weight: 750;
    margin: 0;
    padding: 0;
}

navbar {
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 10px;
    margin-top: 90px;
}

navbar label {
    text-decoration: none;
    font-family: Copperplate, Papyrus, fantasy;
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
    padding: 5px 20px;
    margin: 0px 10px;
    border-radius: 5px 5px 0 0;
    background-image: linear-gradient( 89.2deg,  rgba(191,241,236,1) 22.3%, rgba(109,192,236,1) 84.1% );
    transition: background-color 0.3s;
}

navbar label.active {
    background-color: white;
    font-weight: 700;
    box-shadow: 0 10px white;
    background-image: unset;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    margin: 0 4rem;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

.image-grid img {
    width: 100%;
    height: auto;
    flex: 0 1 20%;
    object-fit: cover;
    margin: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.image-grid img:hover {
    transform: scale(1.5);
    animation: scaleAnimation 0.5s ease-in-out;
}

@media screen and (max-width:980px) {
    navbar label{
        font-size: 1em;
    }
    
}