*{
    margin: 0;
    box-sizing: border-box;
}


body{
    height:100vh;
    background-image: linear-gradient(var(--bg_color_01),var(--bg_color_02));
    background-repeat: no-repeat;
}

.top-bar{
    height: 6%;
    width: 100vw;
    background-color: var(--color_01);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 0 15px rgb(19, 32, 41);
}
.top-bar img{
    width: 80px;
    margin-right: 20px;
}

.top-bar .title{
    font-family: var(--main_font);
    color: var(--font_color);
}

.footer{
    height: 4%;
    width: 100vw;
    padding-right: 30px;
    background-color: var(--color_01);
    display: flex;
    justify-content: end;
    align-items: center;
    position: fixed;
    bottom: 0;
    z-index: 100;
}

.copyrights{
    font-family: var(--main_font);
    font-size: small;
    color: var(--font_color_01);
    text-decoration: none;
}

.copyrights:hover{
    color: var(--font_color_01);
}


/* Tablet */
@media screen and (max-width:600px) {
    .footer{
        justify-content: center;
        padding-right: 0;
    }
}




/* Mobile */
@media screen and (max-width:350px) {
    .footer{
        justify-content: center;
        padding-right: 0;
    }
    
    
    .copyrights{       
        font-size:x-small;
    }
}
