body{
    font-size: 120%;
}

header{
    background:rgba(var(--rgb-primary), .06);
    padding: 3em 1.8em;
    margin: 1.25em;
    border-radius: 1em;
}

.back-holder{
    display: flex;
    align-items: center;
    margin-bottom: 1.2em;
}

.back-holder span{
    margin-left: .7em;
    font-weight: 500;
    font-size: .9em;
    text-decoration: underline;
}

.back{
    background: rgba(var(--rgb-primary), .06);
    display: flex;
    width: 50px;
    height: 40px;
    transition: 300ms;
    opacity: 1;
}

.back:hover{
    background: var(--primary);
    color: var(--body-color);
}

.back i{
    margin: auto;
    transition: 300ms transform;
}

.back:hover i{
    transform: translateX(-5px);
}


.last-update{
    color: rgba(var(--rgb-primary), .5);
    font-size: .9em;
    margin-top: .8em;
    margin-bottom: 2em;
    display: block;
}

h1{
    font-size: 2.5em;
    font-family: var(--lora);
    font-weight: 500;
    margin: 0;
}

h2{
    font-size: 2em;
    font-family: var(--lora);
}

h3{
    font-size: 1.5em;
    font-family: var(--lora);
}

p{
    text-align: justify;
}


/* // Footer */

footer {
    margin-top: 3em;
    font-size: 90%;
    background: rgba(var(--rgb-primary), .06);
    padding: 40px 50px;
    padding-bottom: 0;
}

footer .content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .content .right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .content .right .social{
    margin-bottom: 40px;
}

footer .content .right .social .ico{
   font-size: 1.5em;
   margin-right: 20px;
   font-family: var(--lora);
   border-bottom: 1px solid rgba(var(--rgb-primary), .5);
   position: relative;
   transition: .3s;
}

footer .content .right .social .ico::before{
    content: "\f30c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    height: 10px;
    width: 10px;
    top: -2px;
    right: -7px;
    font-size: 10px;
    transform: rotate(45deg);
    color:rgba(var(--rgb-primary), .5);
    transition: .3s;

 }

 footer .content .right .social .ico:hover{
    color: var(--secondary);
    padding-bottom: 2px;
 }
 footer .content .right .social .ico:hover::before{
    transform: rotate(45deg) translate(2px, -3px);
}

footer .right .contact{
    margin-bottom: 20px;
}

footer nav ul{
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

footer nav ul li{
    margin-right: 20px;
}


footer .logo{
    display: inline-block;
}

footer .logo img {
    height: 25px;
}

footer .copy-rights {
    display: block;
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: .8em;
}


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

    body{
        font-size: 100%;
    }
    
    header{
        padding: 1em 0;
        margin: 0;
        border-radius: 0;
    }

    /* // Footer */
    footer{
        font-size: 100%;
        padding: 40px 10px;
    }

    footer .content{
        flex-direction: column-reverse;
    }

    footer nav{
        display: none;
    }
}
