@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
body{
    background: #f3f3f3;
}

header{
    background-color: #fff;
    width: 100%;
    height: 10opx;
}
header .navbar span{
    color: crimson;
}
header .navbar{
    font-family: sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}
header nav ul{
    display: block;
    margin: 0 auto;
    width: fit-content;
}
header nav ul li{
    display: inline-block;
    list-style: none;
    float:left;
    padding: 0 16px;
}
header nav ul li a{
    font-family: sans-serif;
    font-weight: 16px;
    color: rgb(22, 15, 128);
}
header nav ul li a:hover{
    color: rgb(255, 0, 98);
}

.text{
    width: 100%;
    height: calc(100vh - 100px);
    background-image: url('image/pexels-vojtech-okenka-392018.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: table;
}
.text-content{
    display: table-cell;
    vertical-align: middle;

}
.text h2 span{
    color: rgb(8, 2, 22);
}
.text h2{
    font-family: sans-serif;
    font-weight: 60px;
    font-weight: 900;
    line-height: 70px;
    text-shadow: 2px 2px 8px #111;
    color: #fff;
    text-align: center;
}
.text h1{
    font-family: sans-serif;
    font-weight: 28px;
    font-weight: 100;
    font-style: italic;
    line-height: 40px;
    text-shadow: 2px 2px 8px #111;
    color: #fff;
    text-align: center;
}
.about{
    width: 100%;
    padding: 78px 0px;
    background-color: #191919;
}

.about img{
    height: auto;
    width: 500px;
    height: calc(100vh - 100px);
}
.about-text{
    width: 550px;
}
.main{
    width: 1130px;
    max-width: 95;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.about-text h1{
    color: white;
    font-size: 80px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-text h3{
    color: white;
    font-size: 25px;
    text-transform: capitalize;
    margin-bottom: 25px;
    letter-spacing: 2px;
}
span{
    color: crimson;
}

.about-text p{
    color: #fcfc;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
}
button{
    background: #f9004d;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}
button:hover{
    background: transparent;
    border: 2px solid#f9004d;
    cursor: pointer;
}

/*CLASS skills starts hear*/

.skills {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #451332;
    color: white;
    padding: 20px;
  }
  .skills h2 {
    font-size: 50px;
    position: relative;
    font-family: "Source Sans Pro", sans-serif;
  }
  .skills h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 3%;
    background-color: rgb(70, 14, 14);
    animation: h2-bottom 1s infinite ease-in-out alternate;
  }
  .skills-div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .skills-card {
    /* background-color: rgb(0, 143, 143,0.1); */
    box-shadow: 0px 2px 10px 2px rgba(88, 39, 50, 0.3);
    color: rgb(104, 5, 5);
    padding: 20px;
    margin: 20px;
    font-family: "Source Sans Pro", sans-serif;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
  }
  .skill {
    color: white;
  }
  /*contact starts here*/

  .contact .row{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.contact .row .content{
    flex:1 1 30rem;
    padding:4rem;
    padding-bottom: 0;
}

.contact .row form{
    flex:1 1 45rem;
    padding:2rem;
    margin:2rem;
    margin-bottom: 4rem;
}

.contact .row form .box{
    padding:1.5rem;
    margin:1rem 0;
    background:#3333;
    color:#fff;
    text-transform: none;
    font-size: 1.7rem;
    width:100%;
}

.contact .row form .box::placeholder{
    text-transform: capitalize;
}

.contact .row form .message{
    height: 15rem;
    resize: none;
}

.contact .row .content .title{
    text-transform: uppercase;
    color:#fff;
    font-size: 3rem;
    padding-bottom: 2rem;
}

.contact .row .content .info h3{
    display: flex;
    align-items: center;
    font-size: 2rem;
    color:#eee;
    padding:1rem 0;
    font-weight: normal;
}

.contact .row .content .info h3 i{
    padding-right: 1rem;
    color:var(--cyan);
}

.top{
    position: fixed;
    bottom:1rem; right: 2rem;
    z-index: 100;
    display: none;
}




  