.header{
    width: 100%;
    height: 60px;
    display:  flex;
    align-items: center;
    z-index: 98;
}

.site-link{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo{
    width: 50px;
    margin: 20px 0;
    transform: translateX(5px);
}

.site-name{
    transform: translateX(10px);
}

#menu-icon{
    transform: translate(-12px);
    cursor: pointer;
    display: none;
}

nav{
    flex: 1;
    text-align: right;
    z-index: 99;
}

nav > ul > li{
    list-style: none;
    display: inline-block;
    margin-right: 30px;
    transform: translateY(-9px);
}

nav > ul > li > a{
    text-decoration: none;
}

@media only screen and (max-width:1275px){
    
    nav > ul{
        width: 100%;
        margin-left: 70%;
        position: absolute;
        top: 60px;
        right: 0;
        z-index: 2;
    }

    nav > ul > li{
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #menu-icon{
        display: block;
    }
    
    .menuList{
        overflow: hidden;
        transition: 0.5s;
        
    }

}



.main-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 98;
}

.footer-site-link{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo{
    width: 50px;
    margin: 20px 0;
}

.footer-site-name{
    transform: translateX(5px);
}

.about-us{
    text-align: center;
}

.about-us > h2{
    padding: 8px 0;
}

.footer-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    padding: 1rem 0;
}

.footer-section  h2 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-section  h2::after {
    content: '';
    width: 6.6rem;
    height: .2rem;
    background: #ff0000;
    position: absolute;
    top: 2.5rem;
    left: 0;
}

.icon-links {
    text-decoration: none;
    cursor: pointer;
}

.theme-selection-div{
    margin: 1rem;
    align-self: center;
}

.theme-selection-div > label{
    font-size: 24px;
    font-weight: bold;
    border-bottom: 5px;
}

.theme-selection-div > select{
    padding-left: 3px;
    width: 120px;
    height: 28px;
    border-radius: 8px;
    font-size: 15px;
}

.footer-item-social {
    margin: 1rem;
}

.footer-item-social > ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.footer-item-social > ul >li {
    margin-right: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all .2s linear;
}

.footer-item-social > ul > li:hover {
    transform: scale(1.4);
    transition: all .2s linear;
}

@media screen and (max-width: 320px) {

    .footer-section {
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 2rem;
    }
    
}



html {
    scroll-behavior: smooth;
  }
  
  body{
      position: relative;
  }
  
  #myBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background: linear-gradient(#ff00ea, #0026ff);
    color: white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    height: 2rem;
    width: 2rem;
    padding-top: 0.5rem;
  }
  
  
  .header{
      position: -webkit-sticky;
      position: sticky;
      top: 0;
  }
  
  .content-area{
      font-size: larger;
      display: flex;
      flex-direction: column;
      padding: 1% 0;
      transition: margin-top 0.4s;
  }  