/* Universal reset and font setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.set_container{
    padding :1%;
}

/* Style for the chart container */
.chart-container {
    width: 90%; /* Make the container 90% of the width of the parent */
    max-width: 950px; /* Set a maximum width for the container */
    margin: 20px auto; /* Center the container horizontally */
    padding: 20px; /* Add some padding around the chart */
    background-color: #f7f7f7; /* Optional: background color to show padding */
    border-radius: 8px; /* Optional: rounded corners for the container */
}

/* Centering the controls */
.controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* Style for buttons */
.controls button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.controls button:hover {
    background-color: #45a049;
}

.controls button:active {
    background-color: #3e8e41;
}

/* Style for the slider container */
.slider-container {
    width: 80%; /* Adjust the width of the slider */
    max-width: 800px; /* Match the max width of the chart */
    margin: 20px auto;
    text-align: center;
}

/* Style for the slider */
#yearSlider {
    width: 100%; /* Full width within the container */
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}
    
#yearSlider::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    background-color: #4CAF50;
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
}

#yearSlider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background-color: #4CAF50;
    border-radius: 50%;
    cursor: pointer;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navbar container styling */
.navbar1 {
    display: flex;
    align-items: center;
    padding: 0;
    padding-left: 3%;
    padding-right: 3%;
    background-color: black;
}

/* Logo styling */
.logo1 img {
    max-width: 100%;
}

/* Navigation list styling */
.listing1 {
    flex: 1;
    text-align: right;
    transition: 0.5s;
}

.listing1 ul li {
    display: inline-block;
    margin: 20px;
}

/* Link styling */
a {
    text-decoration: none;
    color: darkturquoise;
}

/* Hover effects for links */
a:hover .hover11,
a:hover .hover22,
a:hover .hover33,
a:hover .hover44,
a:hover .hover55 {
    color: #fff;
    text-shadow: 0 0 10px #fff,
                 0 0 20px #fff,
                 0 0 40px #fff,
                 0 0 80px #fff,
                 0 0 120px #fff;
}

/* Footer container styling */
.footer {
    background-color: #333333;
    text-align: center;
    position: absolute;
    bottom: 100;
    width: 100%;
}

#group {
    font-size: 20px;
    color: mintcream;
}
#names {
    color: mintcream;
    font-style: italic;
    font-size: 15px;
    font-family:'Poppins', sans-serif;
    word-spacing: 20px;
    margin-top: 20px;
}
#course {
    font-size: 12.5px;
    font-style: italic;
    color: mintcream;
    margin-top: 30px;
}
h2 {
    text-align: center;
    margin-top: 30px;
}

article {
    background-color: rgb(162, 162, 165);
    float: right;
    color: white;
    text-align: left;
    padding: 80px 70px;
    margin-right: 120px;
    margin-top: 50px;
}

#description {
    line-height: 25px;
    margin-top: 15px;
}