/* ----------------Main CSS for all --------------- */

*{
    box-sizing: border-box;
}

body{
    color:rgba(245, 245, 245, 0.774);
    background-color: rgba(0, 0, 0, 0.884);
    font-family: 'Nunito', sans-serif;
    padding: 0px;
    margin: 0px;
}

header{
    background-color: rgb(29, 114, 153);
    color: white;
    display: block;
    padding: 0px;
    margin: 0px;
    position: sticky;
    top:0px;
    z-index: 1000;
}

h1{
    padding:0px 5px;
    margin: 10px 3px;
    width: 95vw;
    display: inline-block;
    font-family: 'Caveat', cursive;
}

h2{
    font-family: 'Poiret One', cursive;
    margin: 20px 10px;
}

footer{
    margin: 20px;
}

.navbar{
    display: flex;
    justify-content: space-between;
}

.navbar li{
    list-style: none;
    /* float:left; */
    padding: 1px 5px;
    margin-right: 20px;
    margin-bottom: 3px;
}

.navbar ul{
    overflow:auto;
    margin: 0px;
    display: inline-block;
    padding: 0px 5px;
    display: flex;
    flex-flow: row wrap;

}

.liback{
    border-radius: 3px;
    transition: background-color 0.15s ease-in-out;
}
.liback:hover{
    background-color:rgb(41, 133, 175);
}

.navlink{
    text-decoration: none;
    color: white;
}

.licourse{
    padding:5px;
    margin:3px;
}

.buttons{
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    border: none;
    margin: 5px;
    padding: 4px 4px 2px 4px;
    background-color: rgb(100, 85, 156);
    color:rgb(226, 226, 226);
    border-radius: 3px;
    font-family: 'Spartan', sans-serif;
    font-size: 11px;
    transition: background-color 0.15s ease-in-out;
}

.buttons:hover{
    background-color: rgb(149, 128, 223);
    cursor: pointer;
}

.main_content{
    margin:10px;
}

.lime{
    list-style: none;
    padding:5px;
    margin:3px;
}

.email{
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    border: none;
    margin: 5px;
    padding: 4px 4px 2px 4px;
    background-color: rgb(100, 85, 156);
    color:rgb(226, 226, 226);
    border-radius: 3px;
    font-family: 'Spartan', sans-serif;
    font-size: 11px;
    display: inline-block;
    transition: background-color 0.15s ease-in-out;
}

.email:hover{
    background-color: rgb(149, 128, 223);
    /* cursor: pointer; */
}

.social_footer{
    position: fixed;
    bottom: 15px;
    right: 25px;
    display: flex;
    flex: row wrap;
    background-color: rgba(255, 255, 255, 0.3);
    font-size: 30px;
    padding: 10px 15px 10px 15px;
    border-radius: 15px 15px 15px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px); 
    text-shadow: none;
    overflow: hidden;
}

.social_footer a{
    text-decoration: none;
    color: red;
}

.footer_icon{
    margin: 0px 10px;
}

.social_footer #facebook_footer_font{
    /* color: rgb(13 54 133); */
    color: rgb(180, 180, 180);
    transition: all 0.15s ease-in-out;
    text-shadow: none;
}
.social_footer #facebook_footer_font:hover{
    color: rgb(24, 61, 136);
    text-shadow: 0px 0px 20px rgb(24, 61, 136);
}

.social_footer #instagram_footer_font{
    /* color: rgb(118 26 118); */
    color: rgb(180, 180, 180);
    transition: all 0.15s ease-in-out;
    text-shadow: none;
}

.social_footer #instagram_footer_font:hover{
    color: rgb(183, 41, 41);
    text-shadow: 0px 0px 20px rgb(183, 41, 41);
}

.social_footer #linkedin_footer_font{
    color: rgb(180, 180, 180);
    transition: all 0.15s ease-in-out;
    text-shadow: none;
}

.social_footer #linkedin_footer_font:hover{
    color: rgb(35, 104, 209);
    text-shadow:0px 0px 40px rgb(35, 104, 209);
}

#views{
    /* display: none; */
    display: inline-block;
    position: absolute;
    bottom: 30%;
    right: 20px;
    font-size: 13px;
    padding: 5px;
    background-color: #3e8eb3;
    border-radius: 7px;
}

#views:hover{
    background-color: #55a4c9;
}

/* ------------------------------------- Media Queries ----------------------------- */
@media (max-width: 500px) and (min-width: 451px){
    h2{
        font-size: 20px;
    }
    
    p{
        font-size: 17px;
    }

    main li{
        font-size: 17px;
    }

    .buttons{
        font-size: 10px;
    }

    .social_footer{
        position: fixed;
        bottom: 13px;
        right: 23px;
        display: flex;
        flex: row wrap;
        font-size: 27px;
        padding: 9px 14px 9px 14px;
        border-radius: 15px 15px 15px 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }
}

@media (max-width: 450px) and (min-width: 401px){
    h2{
        font-size: 19px;
    }
    
    p{
        font-size: 16px;
    }

    main li{
        font-size: 16px;
    }

    .buttons{
        font-size: 9px;
    }

    .social_footer{
        position: fixed;
        bottom: 0px;
        right: 0px;
        width: 100%;
        display: flex;
        flex: row wrap;
        justify-content: space-evenly;
        font-size: 25px;
        padding: 1px 13px 1px 13px;
        border-radius: 0px 0px 0px 0px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        border-left: 0px solid rgba(255, 255, 255, 0.3);
    }
}

@media (max-width: 400px) and (min-width: 301px){
    h2{
        font-size: 17px;
    }
    
    p{
        font-size: 15px;
    }

    main li{
        font-size: 15px;
    }

    .buttons{
        font-size: 9px;
    }

    .social_footer{
        position: fixed;
        bottom: 0px;
        right: 0px;
        width: 100%;
        display: flex;
        flex: row wrap;
        justify-content: space-evenly;
        font-size: 23px;
        padding: 1px 13px 1px 13px;
        border-radius: 0px 0px 0px 0px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        border-left: 0px solid rgba(255, 255, 255, 0.3);
    }

    #views{
        bottom: 50%;
        right: 10px;
        font-size: 12px;
        padding: 5px;
    }
}

@media (max-width: 300px) and (min-width: 251px){
    h1{
        font-size: 25px;
    }

    header li{
        font-size: 13px;
    }
    
    h2{
        font-size: 16px;
    }
    
    p{
        font-size: 13px;
    }

    main li{
        font-size: 13px;
    }

    .buttons{
        font-size: 7px;
    }

    .social_footer{
        position: fixed;
        bottom: 0px;
        right: 0px;
        width: 100%;
        display: flex;
        flex: row wrap;
        justify-content: space-evenly;
        font-size: 21px;
        padding: 1px 10px 1px 10px;
        border-radius: 0px 0px 0px 0px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        border-left: 0px solid rgba(255, 255, 255, 0.3);
    }

    #views{
        bottom: 50%;
        right: 7px;
        font-size: 10px;
        padding: 4px;
    }
}

@media (max-width: 250px){
    h1{
        font-size: 20px;
    }

    header li{
        font-size: 11px;
    }

    h2{
        font-size: 17px;
    }
    
    p{
        font-size: 14px;
    }

    main li{
        font-size: 14px;
    }

    .buttons{
        font-size: 8px;
    }

    .social_footer{
        position: fixed;
        bottom: 0px;
        right: 0px;
        width: 100%;
        display: flex;
        flex: row wrap;
        justify-content: space-evenly;
        font-size: 19px;
        padding: 1px 10px 1px 10px;
        border-radius: 0px 0px 0px 0px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        border-left: 0px solid rgba(255, 255, 255, 0.3);
    }

    #views{
        bottom: 40%;
        right: 7px;
        font-size: 9px;
        padding: 4px;
    }
}