* {
    font-family: 'Segoe UI';
    color: white;
}

body,
html {
    height: 100%;
}

h1 {
    font-size: 48pt;
}

h2 {
    font-size: 28pt;
}

.bg {
    /* The image used */
    background-image: url("../img/background-first-html.JPG");
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.center-text {
    text-align: center;
}

.padding {
    padding: 20px;
}

.padding-top {
    padding-top: 80px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.padding-top-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
}

.about-me {
    /* The image used */
    background-image: url("../img/mysnapshot.jpg");
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.projects {
    /* The image used */
    background-image: url("../img/appjam-payment.JPG");
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.past-work {
    /* The image used */
    background-image: url("../img/registration-1.JPG");
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.transpar {
    background-color: rgba(38, 38, 38, 0.7);
}

.jumbotron {
    top: 50%;
    left: 50%;
}

.carousel {
    border: 4px solid black;
    padding: 0px;
}

.carousel-caption {
    top: 50%;
    bottom: auto;
}

.carousel-caption.h1 {
    text-align: left;
}

.carousel-caption.p {
    text-align: center;
}

.carousel-caption-bot {
    top: 50%;
    bottom: auto;
    font-size: 14px;
    padding: 0px;
}

.padx {
    padding-top: 5%;
}

.padall {
    padding: 5%;
}

.img-car {
    width: 1200px;
    height: 600px;
}

.green-text {
    color: rgb(148, 243, 6);
}

.orange-text {
    color: orange;
}

.blue-text {
    color: rgb(80, 190, 207);
}

.purple-text {
    color: purple;
}

.red-text {
    color: red;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    20% {
        opacity: 0.2;
    }
    30% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.5;
    }
    60% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.7;
    }
    80% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.9
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0.75;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.25;
    }
    100% {
        opacity: 0;
    }
}

#page-contents {
    visibility: hidden;
    animation-name: fadeIn;
    animation-duration: 1s;
}

#page-contents1 {
    visibility: hidden;
    animation-name: fadeIn;
    animation-duration: 1s;
}

#page-contents2 {
    visibility: hidden;
    animation-name: fadeIn;
    animation-duration: 1s;
}

#project-contents {
    visibility: hidden;
    animation-name: fadeIn;
    animation-duration: 1s;
}

#project-contents1 {
    visibility: hidden;
    animation-name: fadeIn;
    animation-duration: 1s;
}

#project-contents2 {
    visibility: hidden;
    animation-name: fadeIn;
    animation-duration: 1s;
}