main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    align-items: center;
    text-align: center;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 75%; /* Adjust this to control the width of the sections */
}

section img {
    margin-bottom: 15px;
    width: 25dvw;
}

main p {
    font-size: 15px;
    font-weight: bolder;
    color: black !important;
    -webkit-text-stroke: none;
}
main h2 {
    font-size: 50px;
    color: forestgreen;
    text-shadow: 2px 2px 4px #000000;
}

section {
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

section img {
    margin-bottom: 5%;
    margin-top: 5%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2), 0px 0px 20px rgba(0, 0, 0, 0.1);
}

main p {
    font-size: 25px;
    color: #333333;
    line-height: 1.5;
    transition: all 0.3s ease-in-out;
}

#logo_link {
    text-decoration: none;
    background-color: transparent !important;
}

/* Mobile responsive */
@media screen and (max-width: 480px) {
    section {
        width: 100%;
    }
    main img {
        width: 70% !important;
        margin-top: 5%;
    }
    main p {
        font-size: 5dvw;
    }
}

main p:hover {
    color: #00ff00;
    text-shadow: 2px 2px 4px forestgreen;
}

section img:hover {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3), 0px 0px 25px rgba(0, 0, 0, 0.2);
}
    main section {
        margin-bottom: 15px;
        width: 100%;
    }

 
