
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: lightgreen;
}

.navbar {
    display: flex;
    align-items: center;
    max-width: 1500px;
    background-color: lightskyblue;
    margin: -9.9px;
    justify-content: space-between;
    padding-right: 100px;
}

.navbar .hamburger-btn {
    display: none;
    color: #fff;
    cursor: auto;
    font-size: 1.5rem;
}

.navbar .logo {
    gap: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar .logo img {
    width: 40px;
    border-radius: 50%;
    margin-left: 20px;
}

.navbar .logo h2 {
    color: #fff;
    font-weight: 600;
    font-size: 1.7rem;
    font-family: Georgia;
}

.navbar .links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.navbar .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
    color: #000;
    cursor: pointer;
}

.navbar .links a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.1s ease;
    font-family: Georgia;
}

.navbar .links a:hover {
    color: #008080;
}

.logo img {
    width: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

h1 {
    margin: 0;
}

main {
    padding: 20px;
}

.category {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 5px solid lightskyblue;
    font-family: Georgia;
}

.category h2 {
    margin-top: 0;
    color: #333;
    font-family: Georgia;
}

.category p {
    color: #666;
    font-family: Georgia;

}
.category a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #008080; 
    color: #ffffff; 
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: Georgia;
}

.category a:hover {
    background-color: #006666; 
}
footer {
    background-color: lightskyblue;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: Georgia;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content h3 {
    margin: 0;
    font-family: Georgia;
}

.socials {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.socials li {
    display: inline-block;
    margin-left: 10px;
}

.socials li:first-child {
    margin-left: 0;
}

.socials li a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.socials li a img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}


@media screen and (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .links.active {
        display: block;
    }

    .logo {
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 768px) {
    .hamburger-btn {
        display: none;
    }

    .links {
        display: flex;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .links a {
    display: inline-flex;
    margin: 20px 0;
    font-size: 1.2rem;
    color: white;
    animation: fadeIn 0.5s ease forwards; 
    opacity: 0; 
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.category {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 5px solid lightskyblue;
    animation: fadeIn 0.5s ease forwards; 
    opacity: 0; 
}

.fade-out {
    animation: fadeOut 1s ease;
    opacity: 0;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
#arrow-link {
    animation: slideToLeft 1s ease forwards; 
}

@keyframes slideToLeft {
    from {
        margin-left: 50px; 
    }
    to {
        margin-left: 0; 
    }
}
.navbar .links a {
    display: inline-flex;
    margin: 20px 0;
    font-size: 1.2rem;
    color: white;
    animation: fadeIn 0.5s ease forwards; 
    opacity: 0; 
}
.header-text p {
    font-size: 1.2rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .header-text p {
        font-size: 1rem; 
        line-height: 1.3; 
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column; 
        height: auto; 
        padding-right: 0; 
    }

    .navbar .hamburger-btn {
        display: block; 
    }

    .navbar .logo {
        margin-top: 10px; 
        margin-bottom: 10px; 
        text-align: center;
    }

    .navbar .links {
        display: none;
        flex-direction: column; 
        width: 100%;
        text-align: center;
    }

    .navbar .links a {
        margin: 10px 0; 
    }

    .navbar .close-btn {
        display: block; 
        position: static;
    }

    .navbar .hamburger-btn.clicked ~ .links {
        display: flex;
    }
}

.navbar .links.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: lightskyblue; 
    position: absolute;
    top: 100px; 
    left: 0;
    width: 100%;
    z-index: 999; 
}
.links {
    display: none; 
}

.links.active {
    display: block; 
}
