*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.hero{
    height: 120vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url(../img/black.jpg);
    background-size:cover ;
    background-position: center;
}
nav{
   display: flex;
   align-items:center;
   justify-content: space-between;
   padding-top: 40px;
   padding-left:10%;
   padding-right:10%;
}
.logo{
color:white;
font-size: 29px;
}

span{
color:red;
}
nav ul li{
list-style-type: none;
display:inline-block;
padding: 10px 22px;
}
nav ul li a {
color: white;
text-decoration:none;
font-weight: bold;
}
nav ul li a: hover {
transition: .4s;
color: red;
}

.main{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align:center;
}
h1 {
color: white;
font-size: 80px;
font-family: 'lucida caligraphy',sans-serif;
text-transform: uppercase;
font-weight: ;
letter-spacing: 2px;
margin-bottom: 10px;

}
p{
   margin-bottom: 25px;
   color: white;
   font-size: 18px;
   line-height: 1.7;
   font-weight: 500;
}
button{
    background: red;
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: .3s;
}
button:hover{
   background: transparent;
   border: 2px solid red;
   color: white;
   transform: translateY(-10px);
   cursor: pointer;
}
.links{
    position: absolute;
    top: 100%;
    left: 10%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
.links h6{
color: white;
font-size: 20px;
margin-right:50px;
}
.links .social a{
  display:inline-block;
  color: white;
  margin-right: 10px;
  transition: .3s;
}
.links .social a:hover{
    transform: translateY(10px);
}
h7{
   color: white;
   font-size:15px;

}





<!--my portfolio assignment of the emobilis brave class css file for graphics starting point-->




*{
    margin: 0;
    padding: 0;
    outline:none;
    text-decoration:none;
    box-sizing:border-box;
    
}
::before,::after{
    box-sizing: border-box;
}


.section{
    background: var(--bg-black-900);
    min-height: 100vh;
    display:block;
    padding: 0 30px;
    opacity: 1;
}
.hidden{
    display: none !important;
}
.main-content{
    padding-left: 290px;
}
.padd-15{
    padding-left: 15px;
    padding-right: 15px;
}
.container{
    max-width: 1100px;
    width:100%;
    margin: auto;
}
.section .container{
    padding-top:60px;
    padding-bottom: 70px;
}
.section-title{
    flex: 0 0 100%;
    max-width:100%;
    margin-bottom: 60px;
}
.section-title h2{
    font-size: 40px;
    color:var(--text-black-900);
    font-weight:700;
    position:relative;
}
.section-title h2::after{
    content: '';
    height:4px;
    width:120px;
    margin-left:20px;
    background-color: var(--skin-color);
    position:absolute;
    top:100%;
    left:0;
    margin-top:0px;
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position:relative;
}
.btn{
    font-size:16px;
    font-weight:500;
    padding:12px 35px;
    color:white;
    border-radius:40px;
    display:inline-block;
    white-space: nowrap;
    border:none;
    background:var(--skin-color);
    transition: all 0.3s ease;
}
.btn:hover{
    transform:scale(1.05);
}
.shadow-dark{
    box-shadow: 0 0  20px rgba(48, 46, 77, 0.15);
}

.home .home-img{
    flex: 0 0 40px;
    max-width:40%;
    text-align: center;
    position:relative;
}
.home-img::after{
    content: '';
    position:absolute;
    height:80px;
    width: 80px;
    border-bottom:8px solid var(--skin-color);
    border-right:8px solid var(--skin-color);
    right: -20px;
    bottom: -40px;
}
.home-img::before{
    content: '';
    position:absolute;
    height:80px;
    width: 80px;
    border-top:8px solid var(--skin-color);
    border-left:8px solid var(--skin-color);
    left: -20px;
    top: -40px;
}
.typing{
    color:var(--skin-color);
}
.home-info p{
    margin-bottom:70px;
    font-size: 16px;
    color:var(--text-black-700);
}
.home .home-img img{
    margin: auto; 
    border-radius: 5px;
    height: 400px;
}


/* portfolio */
.portfolio .container{
    padding-bottom: 80px;
}
.portfolio .portfolio-heading{
    flex:0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
}
.portfolio .portfolio-heading h2{
    color: white;
    font-weight: 500;
}
.portfolio .portfolio-item{
    flex:0 0 33.33%;
    max-width:  33.33%;
    margin-bottom: 30px;
}
.portfolio .portfolio-item-inner{
    border: 6px solid var(--bg-black-100);
    border-radius:10px;
    overflow:hidden;
    cursor: pointer;
}
.portfolio .portfolio-item-inner .portfolio-img img{
    width: 100%;
    display: block;
}

<!-- The css file for about-->






