/*
    Theme Colors:
    #C67B0f - brownish gold
    #FFAC35 - orangey orange
    #755A8A - light purple
    #BFDA85 - lime mint something

    
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
*/

body {
    padding-top: 80px;
    background-image: url(https://takettel.github.io/assets/images/SVG/Asset%201.svg);
    background-size: cover;
    color: #343434;
    padding-bottom: 80px;
    background-attachment: fixed;
    background-blend-mode: difference;
}

/* --------------------------------Header----------------------------- */

.myName {
    font-family: 'Permanent Marker', cursive;
    font-size: 28px;
    color: #fffff0;
    text-shadow: 1px 2.5px #996600;
    background-color: #CC5400;
    text-align: center;
    height: 50px;
    margin-top: 5px;
    border-radius: 10px;
}

.navbar {
    color: #755A8A;
}

.fixed-top {
    background-color: #BFDA85;
    height: 50px;
    outline: 2px solid #755A8A;
}

.collapse,
.collapsing {
    background-color: #BFDA85;
    outline: 0px 0px 2px 0px solid #000000;
}

.nav-link {
    color: #fffff0;
}

.nav-link.disabled {
    color: #CC5400;
}

.nav-link:hover,
.download:hover {
    color: #19FF90;
}

.download {
    color: #777777;
}

hr {
    background-color: #FFAC35;
}

#initialLogo {
    height: 100px;
    width: 100px;
}

/* .redirect {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
} */

/* --------------------------------Body------------------------------- */

.titleBox {
    border-style: outset;
    border-color: #000000;
    border-width: 0px 2px 2px 0px;
    background-color: #F8F8FF;
    font-family: 'Carter One', cursive;
    font-variant: small-caps;
    font-weight: bold;
    font-size: large;
}

.card {
    background-color: #ebebeb ;
}


.modal-body {
    background-color: #ebebeb ;
}

.modal-footer {
    text-align: right;
}

.nameBox {
    background-color: #FFAC35;
    font-size: xx-large;
    margin-left: -2%;
}

.bioBox {
    background-color: #F8F8FF;
    text-align: center;
    padding: 3% 15%;
    font-weight: bold;
}

.icon {
    height: 125px;
    width: 125px;
}

.bio {
    float: left;
}

.boxesBox {
    margin-left: 0px;
    margin-right: 0px;
}

.thumbBox {
    position: relative;
    display: inherit;
    padding-left: 15px;
    padding-bottom: 30px;
    transition: transform .2s;
}

.thumbBox:hover {
    transform: scale(1.1);
}

.fullImage {
    width: 100%;
}

.thumbImg {
    width: 100%;
    height: 100%;
}

.portTitle {
    position: absolute;
    float: right    ;
    width: 200px;
    bottom: 40px;
    background: #CC5400;
    color: #fffff0;
    opacity: .85;
}

.mainTitle {
    margin: 15px 0 0 15px;
    font-family: 'Permanent Marker', cursive;
    font-size: 20px;
}

.sectionTitle {
    margin: 0 0 15px 15px;
    font-family: 'Permanent Marker', cursive;
    font-size: 18px;
}

.spacer {
    padding-bottom: 25px;
}

.resume {
    background-color: #CC5400;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 15px;
}

button {
    margin-bottom: 15px;
}

.linkImg {
    padding-left: 0px;
    padding-right: 0px;
}

#mainPic {
    z-index: 5;
    margin: 15px 0px;
}

#extraPic {
    margin-top: 30%;
    margin-left: -10%;;
    z-index: 0;
}

/* ---------------------------------Footer---------------------------- */

.footer-margin {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #996600;
    background-color: #fffff0;
}

  /* --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px; */

@media (min-width: 1201px) {
    #initialLogo {
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 1200px) {
    .myName {
        height: 90px;
    }

    .fixed-top {
        height: 100px;    
    }

    body {
        padding-top: 120px;
    }
}

@media (min-width: 993px) {
    .profilePic {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .profilePic {
        width: 200%;
    }
}

@media (min-width: 768px) {
    .icon {
        height: 75px;
        width: 75px;
    }
    
}

@media (max-width: 767px) {
    .myName {
        height: 45px;
    }
    .fixed-top {
        height: 100px;    
    }
    .icon {
        height: 150px;
        width: 150px;
    }
    body {
        padding-top: 120px;
    }
    .mainTitle {
        font-size: 24px;
    }
    .profilePic {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .nameBox {
        margin-left: 0%;
    }
    
}