

html {
    font-size: 16px;
}
/* Global Section */

.section {
    width: 100vw;
    height: 100vh;
}

.section .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section .logo {
    width: 100px;
    height: auto;
}

.section .section-title {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    margin: 10px 0 20px;
    text-align: center;
}

.section .row,
.section .article,
.section .article-list {
    min-height: 80%;
}

.footer {
    padding: 50px 0px;
    margin: 50px 0;
}
.footer .logo {
    width: 200px;
    height: auto;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Icon Styling */

.theme-icon {
    font-size: 2rem;
    cursor: pointer;
    position: fixed;
    top: 1rem;
    right: 1rem;
}

.hidden {
    display: none;
}



/* Responsive Design*/

/* Extra small devices (less than 576px) */
@media (max-width: 575.98px) {
/* Your styles for extra small devices */
    
   
}
  
/* Small devices (576px to 767px) */
@media (max-width: 767.98px) {
/* Your styles for small devices */
    
}
  
/* Medium devices (768px to 991px) */
@media (max-width: 991.98px) {
/* Your styles for medium devices */
    
}
  
/* Large devices (992px to 1199px) */
@media (max-width: 1199.98px) {
/* Your styles for large devices */
}
  
/* Extra large devices (1200px to 1399px) */
@media (max-width: 1399.98px) {
/* Your styles for extra large devices */
}

  
