html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    margin: 40px;
    font-size: 14px;

}
.box {
    flex: 1 1 300px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.btn {
    background-color: #9400d3;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.active {
    border: 2px solid #4CAF50;
    transform: scale(1.02);
}

.btn:hover {
    background-color: #4CAF50;
    transform: scale(1.05);
}

h1 {
    color: #2e3e50;
    margin-bottom: 10px;
}

h2 {
    color: #9400d3;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

ul, ol{
    margin-left: 20px;
}

a {
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    body {
        margin: 20px;
    }
    .box {
        padding: 15px;
    }
    .btn {
        width: 100%;
        font-size: 16px;
        padding: 15px;
    }
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
}

@media (hover: hover) and (min-width: 768px) {
    .box:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }
}

.navbar {
    background-image:
            url("file_000000007f0c722f8149d67c590fb3f6.png");"
    background-image-size: 100%;
    background-size: cover;
    background-position: center;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

nav.list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0 auto;
    padding: 0;
}
nav.list a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.nav-list a:hover {
    background-color: rgba(255,255,255,0.2);
}

.container {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

#infoText {
    opacity: 1;
    background-color: white;
    padding: 20px;
    transform: translateY(15px);
    transition:
            opacity 0.3s ease,
            transform 0.3s ease;
}

#infoText.active {
    opacity: 1;
    transform: translateY(0);
    animation: glowEffect 0.6s ease;
}

:root {
    --glow-color: rgba(200, 80%, 60%);
}

@keyframes glowEffect {
    0% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    40% {
        box-shadow: 0 0 25px var(--glow-color);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    }
}

#infoText.active {
    animation: glowEffect 0.6s ease;
}
