html, body {
    width: 100%;
    height: 100%;
    color: #545454;
    font-family: 'Nunito', sans-serif;
}

a, .btn-back {
    color: inherit;
    text-decoration: none;
    transition: .25s;
}

a:hover, .btn-back:hover {
    color: #EB5E43;
}

.btn-back:focus { 
    box-shadow: 0 0 0 .25rem rgba(235, 94, 67, .25);
}

#main {
    padding: 6rem 6rem 2rem 6rem;
} 

/* Profile */
.profile-col {
    position: sticky;
    top: 6rem;
    z-index: 1024;
}

.profile-item {
    padding-bottom: 3rem;
}

.img-cover {
    position: relative;
}
/* ----------------- */

/* Portfolio Cover Pages */
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
}

.overlay:hover {
    opacity: 1;
}

.overlay-text {
    color: white;
    position: absolute;
    bottom: 0%;
    left: 0;
}

#overlay-propernutty {
    background-color: rgba(222, 10, 24, .25);
}

#overlay-yumkaxx {
    background-color: rgba(69, 2, 1, 0.5);
}

#overlay-sealand {
    background-color: rgba(1, 45, 69, 0.5);
}

#overlay-enroot {
    background-color: rgba(69, 49, 1, 0.5);
}

#overlay-buono {
    background-color: rgba(230, 110, 22, 0.25);
}
/* ----------------- */

/* Type */
.t-h1 {
    font-size: 2.75rem;
    font-weight: bold;
}

.t-sub {
    font-weight: 100;
}

.t-img-h {
    font-size: 2rem;
    margin-bottom: 0rem;
    font-weight: bold;
}

.t-img-tagline {
    font-size: 1rem;
    margin-bottom: 0rem;
}

.t-mainbody {
    line-height: 1.5rem;
}
/* ----------------- */


.col-xxxl-6 {
    flex: 0 0 auto;
    width: 100%;
    padding-bottom: 1.5rem;
}

/* Subpage-imgs */

.subpage-img {
    display: block;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    #main {
        padding: .25rem .25rem .1rem .25rem;
    } 

    .container-fluid {
        padding-left: .5rem !important; 
        padding-right: .5rem !important;
    }

    .col-xxxl-6 {
        flex: 0 0 auto;
        width: 100%;
        padding-bottom: .75rem;
    }

    .profile-col {
        position: sticky;
        top: 6rem;
        z-index: 1024;
        padding-left: 3rem;
        padding-right: 3rem;
        padding-bottom: 3rem;
        padding-top: 3rem;
        text-align: center;
    }
}

