*{
    padding: 0;
    margin: 0;
    border: 0;
    font-family: 'Roboto Condensed', sans-serif;
}
/* navbar */
.nav-link{
    text-transform: capitalize;
    color: #000000;
    font-weight: 550;
}
.nav-link:hover{
    color: #7071E8;
    transition: 0.6s;
}
.navbar-toggler{
    border: none;
    font-size: 24px;
}
.navbar-toggler:focus{
    box-shadow: none;
    outline: none
}

/* banner */
#banner{
    background-image: linear-gradient(rgba(0, 0, 0, 0.378),rgba(0, 0, 255, 0.321)),url('images/banner1.jpeg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
}
#banner h1{
    text-transform: capitalize;
    font-family: 'Roboto Slab', serif;
    font-weight:700;
    font-size: 3rem;
}
#banner h1 span{
    text-transform: capitalize;
    font-family: 'Roboto Slab', serif;
    font-weight:700;
    font-size: 3rem;
    color: orange;
}
/* about */
.about{
    background-color: rgba(255, 255, 255, 0.801);
}
.imgcen{
    display: grid;
    align-items: center;
}
.rounded{
    width: 350px;
    height: 65vh;
}
.title-tag{
    text-align: center;

}
.title-link{
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 650;
    font-size: 1.1rem;
}
.title-link:hover{
    color: #7071E8;
    transition: 0.5s;
    cursor: pointer;
}
.first-content{
    height: 170px;
}
#sk{
    color: #7071E8;
}

/* my projects */
.containers{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 20px;
}
.box{
    box-sizing: border-box;
    background-color: #e3e3e3;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    transition: background 0.6s, transform 0.5s ;
}
.box:hover{
    background-color: #7071E8;
    transform:translateY(-5px);
    cursor: pointer;
}

/* contactus */

.contactus{
    display: flex;
    width: 100%;
    text-align: center;
    padding-top: 40px;
    align-items: center;
    justify-content: center;
}
.block{
    width: 80%;
    background-color:rgb(255, 255, 255);
    background-color:#7071E8;
    border-radius: 7px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    justify-content: center;
}
.block input{
    display: block;
    margin: 25px;
    padding: 10px;
    padding-left: 20px !important ;
    width: 500px;
    border: none;
    outline: none;
    background-color: rgb(255, 255, 255);
}
.block input[type=submit]{
    background-color: #000000;
    color: #ffffff;
}

/* footer  */
.footer p{
    text-align: center;
    margin: 0px;
    
}
.footer{
    background-color: #f2f2f2c7;
}

/* responsive */
@media (max-width: 675px){
    .rounded {
        width: 257px;
        height: 45vh;
    }
    .block input{
        width: 270px;
    }
}
@media (max-width:383px){
    .block input{
        width: 200px;
    }
}
@media (max-width: 310px){
    .rounded {
        width: 223px;
        height: 40vh;
    }
}