*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
container{
    width: 100%;
    height: 100vh;
    background: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-text h5{
    color: rgb(0, 0, 0);
    font-size: 80px;
    text-transform: capitalize;
    text-align: justify;
    margin-left: 50px;
    margin-bottom: 20px;
}
.about-text h6{
    color: #ff5900;
    font-size: 35px;
    text-transform: capitalize;
    text-align: justify;
    margin-left: 50px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.about-text p{
    color: rgb(0, 0, 0);
    letter-spacing: 1px;
    line-height: 28px;
    text-align: justify;
    margin-left: 50px;
    margin-right: 50px;
    font-size: 18px;
    margin-bottom: 30px;
}
button{
    background: #ff5900;
    align-items: center;
    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 #ff5900;
    cursor: pointer;
}