/* responsive css for medium media */


@media (min-width: 481px) and (max-width: 950px) {
    h1{
        font-size: 40px;
    }

    .site-footer{
        font-size: 12px;
        margin-top: 100px;
                
    }

    /* For navigation bar */

    .navigation-bar p {
        border-bottom: 3px solid navy;
        font-size: 25px;
    }


    /* For Home page */

    .home-img {
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 0px;
        margin-bottom: 150px;

        
    }

    .right-panel{
        gap: 10px;
    }

    #yuyoung-photo{
        padding-top: 10px;
        height: 400px;
    }


    .welcome-message{
        margin-left: -10px;
        font-size: 20px;
        
        
    }

    .content {
        height: auto;
        flex-direction: column;
        font-size: 15px;
        margin-top: 70px;

    }

    .info, .education{
        height: auto;
        
    }


    .education ul{
        font-size: smaller;
    }

    .logo{
        width: 20px;
        height: auto;
        margin-bottom: 0px;
    }



    /* For Skills page */


    .sub-skill-menu p{
        font-size: 15px;
    }

    
    .skill-logo h2{
        font-size: 25px;
    }

    .skill-logo img{
        width: 50px;
        height: auto;
    }

    .skill-item{
        display: flex;
    }
    
    
    .skill-item span{
        font-size: 15px;
        margin-left: 20px;
        margin-top: 2.5px;
        
    }

      
    .skill-level {
        height: 100%;
        background-color:rgb(183, 215, 239); 
        border-radius: 50px;
      }
    

    .skill-bar {
        width: 300px ;        
        height: 15px;
        background-color: #eee;
        border-radius: 50px;
        margin-top: 15px;
        margin-left: 20px;
        margin-right: 20px;
        
      }
      
    .skill-level {
        height: 100%;
        background-color:rgb(183, 215, 239); 
        border-radius: 50px;
      }
    
    .java-text {
        margin-top: 35px;
    }



    /* For Contact page */

    .contact-message h2{
        font-size: 25px;
    }


    .contact-icon img {
        width: 150px;
        height: 150px;
        margin-top: 50px;
    }

    body.dark {
        background-color: #121212;
        color: #ffffff;
    }  

    .slider {
      font-size: 10px;
      color: #333;
    }

    .switch input {
        width: 34px;
        height: 20px;
        appearance: none;
        background-color: #ccc;
        outline: none;
        border-radius: 34px;
        position: relative;
        cursor: pointer;
      }
      
 
      .switch input::before {
        content: '';
        position: absolute;
        width: 13px;
        height: 13px;
        left: 4px;
        top: 4px;
        background-color: white;
        border-radius: 50%;
        transition: transform 0.3s ease;
      }

      .switch input:checked::before {
        transform: translateX(13px);
      }
    

    

}