/* CSS Reset */
* {
    margin: 0px;
    padding: 0px;
}

/* Navbar */
/* Navbar background */
.nav {
    background-image: linear-gradient(to bottom right, antiquewhite, silver);
}

/* Toggler */
.navbar-toggler {
    border: none;
    outline: none;
    background-color: transparent;
}

/* Navbar toggler icon */
.navbar-toggler-icon {
    color: #000;
}

/* Hamburger bars */
.navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* .navbar-nav .nav-item {
    padding: 10px 0;
} */

/* .navbar-nav .nav-link {
    color: #000;
    font-size: 16px;
} */

/* Home icons */
.home-icon {
    height: 50px;
    /* width: 100%; */
}

/* Pixel font */
.pixel {
    font-family: 'Pixelify Sans';
}

/* Link icons */
.nav-icon {
    height: 15px;
    width: 15px;
}

/* Nav-link */
a.nav-link {
    text-decoration: none;
    font-size: larger;
    color: black;
}

/* Nav-link hover effect */
a.nav-link:hover {
    color: white;
}

/* Nav-link color change on click */
a.nav-link:active {
    color: turquoise;
    transition: 0.1s;
}

/* Border bottom */
.b-bottom {
    border-bottom: 2px solid white;
}
/* End of Navbar */

/* Main banner */
/* Main banner background */
.fixed-bg {
    /* The background image */
    background-image: url("/static/img/banner.png");

    /* Set a specified height, or the minimum height for the background image */
    min-height: 400px;

    /* Set background image to fixed (don't scroll along with the page) */
    background-attachment: relative;

    /* Center the background image */
    background-position: center;

    /* Set the background image to no repeat */
    background-repeat: no-repeat;

    /* Scale the background image to be as large as possible */
    background-size: cover;
}

/* Profile picture */
.profile_image {
    height: 300px;
    max-width: 100%;
    border: 4px solid white;
}

/* Career text */
.career-text {
    font-size: 30px;
    font-family: 'Pixelify Sans';
    /* font-family: 'Roboto'; */
    color: gainsboro;
}

/* Main banner picture animation */
.slide {
    /* left: 70px; */
    /* bottom: -150px; */
    opacity: 0;
    animation: slider 7s infinite;
}

/* .slide img{
    width: 300px;
} */

@keyframes slider {
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    30%{
        transform: translateX(-5px);
        opacity: 1;
    }
    50%{
        transform: translateX(-5px);
        opacity: 1;
    }
    100%{
        transform: translateX(-100px);
        opacity: 0;
    }
}
/* End of main banner picture animation */
/* End of main banner */

/* About me */
/* Div border */
.frame {
    border: 10px solid;
    border-image: black;
    position: relative;
    z-index: 1;
}

/* Background color */
/* .about-bg {
    background-image: linear-gradient(to bottom right, #24fcfe, #177e81);
} */

/* About sub-header */
.about-sub-header {
    color: white;
}

/* Pictures parameters */
.about-pics {
    border: 4px solid black;
    height: 350px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 5px 7px black;
}

/* About background two */
.about2-bg {
    background-image: linear-gradient(to bottom right, silver, black);
}

/* Loading animation */
section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    /* background: #042104; */
    filter: hue-rotate(70deg);
    /* border: 3px solid white;
    border-radius: 15px; */
}

.loader {
    position: relative;
    transform: rotate(calc(45deg * var(--r)));
}

.loader span {
    position: absolute;
    top: 0;
    left: -160px;
    width: 160px;
    height: 2px;
    /* background-color: #f00; */
    transform-origin: right;
    transform: rotate(calc(18deg * var(--i)));
}

.loader span::before {
    content: '';
    position: absolute;
    top: calc(-15px / 2);
    width: 15px;
    height: 15px;
    background: #00ff0a;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff0a,
    0 0 20px #00ff0a,
    0 0 40px #00ff0a,
    0 0 60px #00ff0a,
    0 0 80px #00ff0a,
    0 0 100px #00ff0a;
    animation: animate 5s linear infinite;
    animation-delay: calc(-0.5s * var(--i));
}

@keyframes animate {
    0%
    {
        transform: translateX(200px) scale(1);
        opacity: 0;
    }
    10%
    {
        opacity: 1;
    }
    80%
    {
        opacity: 1;
    }
    100%
    {
        transform: translateX(0px) scale(0);
        opacity: 1;
    }
}
/* End of loading animation */

/* Black highlight */
.black-highlight {
    color: black;
}

/* About3 */
/* Background color */
.about3-bg {
    background-image: linear-gradient(to bottom right, white, antiquewhite);
}

/* About4 */
/* Background color */
.about4-bg {
    background-image: linear-gradient(to bottom right, antiquewhite, silver);
}

/* Spine of the bootcamp timeline */
.bootcamp-timeline-spine{
    background-color: teal;
}

/* List bullets */
.no-dots {
    list-style-type: none;
}

/* Bootcamp timeline photos */
.time-line-imgs {
    height: 40px;
}

/* Bootcamp timeline border */
.timeline-border {
    border: 4px solid black;
    border-radius: 15px;
    box-shadow: 5px 7px black;
    transition: 700ms;
}

/* Timeline background */
.timeline-bg {
    background-image: linear-gradient(to bottom right, white, antiquewhite);
}

/* Bootcamp timeline fade in/out */
/* .animate {
    animation: anim 7s infinite alternate;
    }

    @keyframes anim {
    0%, 25% {
        opacity: 0;
        z-index: 0;
    }
    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
        z-index: 1
    }
} */

/* About5 */
.github-logo {
    height: 250px;
    width: 100%;
    transition: 700ms;
}
/* End of about me */

/* Projects */
/* Projects background */
.fixed-projects-bg {
    /* The background image */
    background-image: url("/static/img/blueprints.png");

    /* Set a specified height, or the minimum height for the background image */
    min-height: 300px;

    /* Set background image to fixed (don't scroll along with the page) */
    background-attachment: fixed;

    /* Center the background image */
    background-position: center;

    /* Set the background image to no repeat */
    background-repeat: no-repeat;

    /* Scale the background image to be as large as possible */
    background-size: cover;
}

@media (max-width: 767px) {
    .fixed-projects-bg {
        background-attachment: initial;
    }
}

/* Game projects background */
.fixed-game-bg {
    /* The background image */
    background-image: url("/static/img/gaming.png");

    /* Set a specified height, or the minimum height for the background image */
    min-height: 300px;

    /* Set background image to fixed (don't scroll along with the page) */
    background-attachment: fixed;

    /* Center the background image */
    background-position: center;

    /* Set the background image to no repeat */
    background-repeat: no-repeat;

    /* Scale the background image to be as large as possible */
    background-size: cover;
}

@media (max-width: 767px) {
    .fixed-game-bg {
        background-attachment: initial;
    }
}

/* Game card background */
.game-card-bg {
    background-image: linear-gradient(to bottom right, tan, black);
}

/* Border top */
.t-top {
    border-top: 2px solid white;
}

/* Career Text */
.career_text {
    font-size: 25px;
    font-family: 'Roboto';
    color: whitesmoke;
}

/* Career Text2 */
.career_text2 {
    font-size: 25px;
    font-family: 'Pixelify Sans';
    color: whitesmoke;
}

/* Project Image */
.project_image {
    height: 200px;
    max-width: 90%;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 2px solid whitesmoke;
    /* border: 2px solid black; */
}

/* Project Image 2 */
.project_image2 {
    height: 200px;
    max-width: 90%;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 5px solid goldenrod;
    /* border: 2px solid black; */
}

/* Project Card */
.project_card {
    margin-bottom: 25px;
}


/* Card Height */
.card.card_height {
    height: 420px;
    /* border: 2px solid whitesmoke; */
    border: 2px solid black;
}

/* Card Height */
.card.card_height2 {
    height: 420px;
    /* border: 2px solid whitesmoke; */
    border: 10px solid goldenrod;
}

/* Project Name */
.project_name {
    font-size: 60px;
    font-family: 'Roboto', sans-serif;
    color: whitesmoke;
}

/* Onmouseover transition time */
div,
img {
    transition: 600ms;
}

/* Code link */
.code_link {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    color: blue;
}

/* Code link2 */
.code_link2 {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    color: goldenrod;
}

/* Video Link */
#link {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    color: orange;
}

/* Project pictures */
.project_pictures {
    height: 400px;
    width: 100%;
    margin: 20px 0px 20px 0px;
    border: 4px solid black;
}
/* End of projects */

/* Skills */
/* Main skills banner background */
.fixed-skills-bg {
    /* The background image */
    background-image: url("/static/img/skills.png");

    /* Set a specified height, or the minimum height for the background image */
    min-height: 300px;

    /* Set background image to fixed (don't scroll along with the page) */
    background-attachment: fixed;

    /* Center the background image */
    background-position: center;

    /* Set the background image to no repeat */
    background-repeat: no-repeat;

    /* Scale the background image to be as large as possible */
    background-size: cover;
}

@media (max-width: 767px) {
    .fixed-skills-bg {
        background-attachment: initial;
    }
}

/* Skills header */
.skills-header {
    font-size: 100px;
    font-family: 'Caveat';
    color: white;
}

/* Skills header 2 */
.skills-header2 {
    font-size: 90px;
    font-family: 'Caveat';
    color: white;
}

/* Skills text */
.skills {
    font-family: 'Caveat';
}

/* Skills text */
.skills-txt {
    font: 75px;
    font-family: 'Caveat';
    color: white
}

/* Black border bottom */
.border-bottom-b {
    border-bottom: 5px solid black;
}

/* Black border top */
.border-top-b {
    border-top: 5px solid black;
}

/* Skills 1 background */
.skills1-bg {
    background-image: linear-gradient(to bottom right, antiquewhite, silver);
}

/* Skills text */
.skills2-txt {
    font-family: 'Bebas Neue';
}
/* End of skills */

/* Education */
/* Main education banner background */
.fixed-education-bg {
    /* The background image */
    background-image: url("/static/img/education.png");

    /* Set a specified height, or the minimum height for the background image */
    min-height: 300px;

    /* Set background image to fixed (don't scroll along with the page) */
    background-attachment: fixed;

    /* Center the background image */
    background-position: center;

    /* Set the background image to no repeat */
    background-repeat: no-repeat;

    /* Scale the background image to be as large as possible */
    background-size: cover;
}

@media (max-width: 767px) {
    .fixed-education-bg {
        background-attachment: initial;
    }
}

.education-icon {
    height: 70px;
}

.card-bg {
    background-image: linear-gradient(to bottom right, white, silver);
    border: 3px solid black;
    /* border-radius: 15px; */
}
/* End of education */


/* Courses */
/* Main courses banner background */
.fixed-courses-bg {
    /* The background image */
    background-image: url("/static/img/courses.png");

    /* Set a specified height, or the minimum height for the background image */
    min-height: 300px;

    /* Set background image to fixed (don't scroll along with the page) */
    background-attachment: fixed;

    /* Center the background image */
    background-position: center;

    /* Set the background image to no repeat */
    background-repeat: no-repeat;

    /* Scale the background image to be as large as possible */
    background-size: cover;
}

@media (max-width: 767px) {
    .fixed-courses-bg {
        background-attachment: initial;
    }
}
/* End of courses */


/* Experience */
/* Main experience banner background */
.fixed-experience-bg {
    /* The background image */
    background-image: url("/static/img/experience.png");

    /* Set a specified height, or the minimum height for the background image */
    min-height: 300px;

    /* Set background image to fixed (don't scroll along with the page) */
    background-attachment: fixed;

    /* Center the background image */
    background-position: center;

    /* Set the background image to no repeat */
    background-repeat: no-repeat;

    /* Scale the background image to be as large as possible */
    background-size: cover;
}

@media (max-width: 767px) {
    .fixed-experience-bg {
        background-attachment: initial;
    }
}
/* End of experience */


/* Contact */
/* Main contact banner background */
.fixed-contact-bg {
    /* The background image */
    background-image: url("/static/img/contact.png");

    /* Set a specified height, or the minimum height for the background image */
    min-height: 300px;

    /* Set background image to fixed (don't scroll along with the page) */
    background-attachment: fixed;

    /* Center the background image */
    background-position: center;

    /* Set the background image to no repeat */
    background-repeat: no-repeat;

    /* Scale the background image to be as large as possible */
    background-size: cover;
}

@media (max-width: 767px) {
    .fixed-contact-bg {
        background-attachment: initial;
    }
}

/* Icon sizes */
.icon-size {
    height: 60px;
    transition: 700ms;
}

/* End of contact */