*{
    padding: 0;
    margin: 0;
    font-family: 'Josefin Sans' 'Sans serif';
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.hero{
    height: 100vh;
    width: 100%;
    background: #101010;
    background-size: cover;
    background-position: center;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 8%;
    padding-right: 8%;
}

.logo{
    color: white;
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
}

span{
    color: #f9004d;
}

nav ul li{
    list-style-type: none;
    display: inline-block;
    padding: 10px 11px;
}

nav ul li a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

nav ul li a:hover{
    color: #f9004d;
    transition: .4s;
}

.content{
    position: absolute;
    top: 55%;
    left: 5%;
    transform: translateY(-50%);
    margin-left: 32%;
}
h1{
    color: white;
    margin: 20px 0px 20px;
    font-size: 50px;

}
h3{
    color: white;
    font-size: 20px;
    margin-left: 72%;
    margin-bottom: 22px;
    
}
h4{
    color: #fcfc;
    letter-spacing: 2px;
    font-size: 20px;
    margin-left: 1%;
}

.social{
    display: flex;
    margin-top: -80px;
}
.social a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9004d;
    border-radius: 50%;
    margin: 22px 10px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-left: 1%;
    
}
.social a:hover{
    transform: scale(1.3);
    transition: .3s;
}
.sidefoto{

  width: 100%;
  max-width: 200px;
  border-radius: 50px;
  object-fit: cover;
  
  
}

.fotobox{
    margin-left: 100vh;
}

.about{
    width: 100%;
    padding: 100px 0px;
    background-color: #191919;
}

.about img {
    height: auto;
    width: 250px;
    border-radius: 20px;
    
}

.about-text{
    width: 550px;
}
.main{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.about-text h2{
    color: white;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.about-text h5{
    color: white;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 25px;
    text-transform: capitalize;
}
.about-text p{
    color: #fcfc;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;

}
button{
    background-color: #f9004d;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}
button:hover{
    background-color: transparent;
    border: 2px solid #f9004d;
    cursor: pointer;
}

.skill{
    background: #101010;
    width: 100%;
    padding: 100px 0px;
}
.title h2{
    color: white;
    font-size: 75px;
    width: 1130px;
    margin: 30px auto;
    text-align: center;
}
.box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
.card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 445px;
    width: 445px;
    padding: 20px 35px;
    background: #191919;
    border-radius: 20px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.card-body{
    flex-grow: 1;
}
.read-more{
    margin-top: auto;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 15px;
    background-color: #f9004d;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 9px 22px;
    border-radius: 30px;
    transition: .4s;
}
.read-more:hover{
    background-color: transparent;
    border: 2px solid #f9004d;
    cursor: pointer;
}
.card i{
    font-size: 30px;
    display: block;
    text-align: center;
    margin: 25px 0px;
    color: #f9004d
}
h5{
    color: white;
    font-size: 23px;
    margin-bottom: 15px;
}
.pra p{
    color: #fcfc;
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 25px;
}
