        body {
            margin: 0;
            padding: 0;
            font-family: Milonga, sans-serif!important;
            font-size: 3vw;
        }

        #slideshow-container {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            animation: slideDown 2s ease-in-out forwards; /* Animation for sliding down */
        }
        
        @keyframes slideDown {
            0% {
                top: -100%; /* Initially off-screen */
            }
            100% {
                top: 0; /* Fully on-screen */
            }
        }

        .slide {
            display: none;
            width: 100%;
            height: 100%;
            object-fit: fill;
        }

        #header {
            color: #000;
            text-align: center;
        }
        
        #header h1 {
            color: #fff;
        }
        #content {
            text-align: center;
            padding: 20px;
        }

        .red-box {
            display: inline-block;
            background-color: red;
            padding: 10px;
            vertical-align: top;
            animation: glowing-red 2s infinite;
        }

        .yellow-box {
            min-width: 80vw;
            display: inline-block;
            background-color: yellow;
            padding: 20px;
            margin-top: 20px;
            animation: glowing 2s infinite;
        }

        @keyframes glowing {
            0% {
                box-shadow: 0 0 10px #ff0;
            }
            50% {
                box-shadow: 0 0 20px #ff0, 0 0 30px #ff0;
            }
            100% {
                box-shadow: 0 0 10px #ff0;
            }
        }

        @keyframes glowing-red {
            0% {
                box-shadow: 0 0 10px #f00;
            }
            50% {
                box-shadow: 0 0 20px #f00, 0 0 30px #ff0;
            }
            100% {
                box-shadow: 0 0 10px #f00;
            }
        }

        #sparkles-box {
            width: 80%;
            margin: auto;
            background-color: #001f3f;
            color: white;
            padding: 50px;
            text-align: center;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }

        .white-text {
            color: white;
        }
        
        .pink {
            background-color: #db4ad0!important;
        }

        .sparkle {
            position: absolute;
            width: 10px;
            height: 1px;
            background: white;
            border-radius: 50%;
            animation: sparkle 2s infinite;
            opacity: 0.5;
        }

        .sparkle1 {
            position: absolute;
            width: 10px;
            height: 1px;
            background: white;
            border-radius: 50%;
            animation: sparkle 3s infinite;
            opacity: 0.5;
        }

        .sparkle2 {
            position: absolute;
            margin-left: 5px;
            margin-top: -5px;
            width: 1px;
            height: 10px;
            background: white;
            border-radius: 50%;
            animation: sparkle 2s infinite;
            opacity: 0.5;
        }

        .sparkle3 {
            position: absolute;
            margin-left: 5px;
            margin-top: -5px;
            width: 1px;
            height: 10px;
            background: white;
            border-radius: 50%;
            animation: sparkle 3s infinite;
            opacity: 0.5;
        }

        @keyframes sparkle {
            0%, 100% {
                opacity: 0.1;
            }
            50% {
                opacity: 1;
            }
        }

        #thumbnail-container {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
        }

        .thumbnail {
            width: 100px;
            height: 100px;
            object-fit: cover;
            cursor: pointer;
        }
       
       .sl-image {
            width: 80vw;
        }
        
        nav {
            text-align: center;
            font-size: 3vw;
        }

        nav a {
            background-color: #6a0dad; /* Purple background */
            display: inline-block;
            padding: 10px 20px;
            margin: 0 10px;
            text-decoration: none;
            color: #fff; /* White text color */
            border: 2px solid #ffd700; /* Gold border */
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        nav a:hover {
            background-color: #483474; /* Darker purple on hover */
        }
        
        .left {
            width: 25%;
            display: inline-block;
            vertical-align: top;
        }
        
        .left img {
            width: 100%;
        }
        
        .middle {
            width: 45%;
            display: inline-block;
            vertical-align: top;
        }
        
        .right {
            width: 25%;
            display: inline-block;
            vertical-align: top;
        }
        
        .right img {
            width: 100%;
        }
        
        p {
            margin: 0;
        }
        
        a {
            text-decoration: none;
        }
        
        .red-box a{
            color: yellow;
        }
        
        .yellow-box a{
            color: red;
        }
        
        h1 {
            font-size: 3.7vw;
            margin: 0;
        }
        
        h2 {
            font-size: 3.4vw;
            margin: 0;
        }
        
        h3 {
            font-size: 3vw;
            margin: 0;
        }
        
        h4 {
            font-size: 2.5vw;
            margin: 0;
        }
        
        h5 {
            font-size: 1.5vw;
            margin: 0;
        }
        
        
        #form-div {
            position: relative!important;
        }
        
        
@media (max-width: 500px) {

        #header img {
            display:none;
        }
            
}