@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

/*================*/
/* == SETUP ==== */
/*==============*/
body {
    font-family: "Montserrat", sans-serif;
    background: #fbfbfd;
}
.nav-link {
    color: #777;
    font-weight: bold;
}

.fab {
    color: #6c757d;
    text-decoration: none;
    transition: .5s;
}

.fab:hover {
    color: #FFF;
    transition: .5s;
    transform: translateY(-3px);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;900&display=swap');


.navbar-brand p {
    font-family: "Orbitron", sans-serif;
    display: inline;
}

/*==========================*/
/* == Jumbotron heading ===*/
/*========================*/
.jumbotron {
	background-color: #5F9EA0;
	color: #fff;
    padding: 50px;
}

/*=======================*/
/*== Projects images ===*/
/*=====================*/
.mywork-photo {
    margin: 0;
    overflow: hidden;
    background-color: #000;
}
.mywork-photo img {
    opacity: 0.4; 
    width: 100%;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
.mywork-photo img:hover {
    opacity: 1;
    -webkit-transform: scale(1.03);
    transform: scale(1.03); 
}

.col-md-6 {
    padding-bottom: 24px;
}

/*=======================*/
/*== About style =======*/
/*=====================*/
.myimg {
    border-radius: 50%;
}

/*===================*/
/*== Blogs Style ===*/
/*=================*/
/*fire fox and google chrom then the main box-shadow*/

.card {
    transition: .5s;
}
.card:hover {
    -webkit-box-shadow: -1px 9px 40px -12px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 9px 40px -12px rgba(0,0,0,0.75);
    box-shadow: -1px 9px 40px -12px rgba(0,0,0,0.75);
    transition: .5s;
}

.col-md-6 a {
    text-decoration: none;
    color: #000;
}

@media (max-width: 1200px) {
    .myimg-prof {
        padding-top: 20px;
    }
}

@media (max-width: 375px) {
    .jumbotron {
        padding: 30px;
    }

    .myimg-prof {
        padding-top: 20px;
    }

    .myimg {
        width: 200px;
        height: 200px;
    }

    .spacex .col-lg-8 {
        padding-top: 100px;
    }
}