/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

li{
    list-style: none;
}

header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 0;
}


nav {
    border-radius: 20px 20px 0px 0px;
    position: fixed;
    width: 100vw;
    height: 20vw;
    bottom: 0;
    background-color: #A0522D;
    color: white;
}

nav ul {
    width: 100%;
    height: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

nav ul li {
    padding: 10px 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

main {
    flex: 1;
    padding: 10px;
}

section {
    margin-bottom: 20px;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.description {
    line-height: 1.5;
    text-align: justify;
    color: #333;
}

.description span.highlight {
    color: #0066cc;
    font-weight: bold;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.description span.highlight {
    color: #0066cc;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}