*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.about{
    display: flex;
  align-items: center;
    min-height: 100vh;
    width:100%;
    padding: 78px 0px;
    background-color: #191919;
}
.about img{
    border: 2px solid #f30a0a;
    box-shadow: 0 0 5px #f30a0a;
    box-shadow: 0 0 25px #f30a0a;
    height: auto;
    width: 50%;
    border-radius: 5em;
    transition: 0.5s ease;
    margin-left: 5em;
    margin-right: 50px;
}
.main{
    width: 1200px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.about-text h1{
    color: #fff;
    font-size: 80px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.about-text h5{
    color: #fff;
    
    font-size: 28px;
    margin-bottom: 0.4em;
    text-transform: 25px;
}
span{
    color: #f30a0a;
}
.about-text p{
    color: rgba(255, 236, 236, 0.8 );
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
}
button{
    background: transparent;
    color:#f30a0a;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid #f30a0a;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s ease;
}
button:hover{
    background-color: #f30a0a;
    color: #fff;
    border: 2px solid #f30a0a;
    box-shadow: 0 0 5px #f30a0a;
    box-shadow: 0 0 25px #f30a0a;
    cursor: pointer;
    transform: scale(1.1);
}
.cv{
    margin-left: 0.5em;
}

