* {
    font-family: 'Lato', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.about {
    width: 100%;
    padding: 78px 0px;
    background-color: #191919;
}

.about img {
    width: 420px;
    height: auto;
}

.about-text {
    width: 550px;
}

.main {
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.about-text h1 {
    color: #Fff;
    font-size: 80px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-text h5 {
    color: #Fff;
    font-size: 25px;
    text-transform: capitalize;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

span {
    color: #f9004d;
}

.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: transparent;
    cursor: pointer;
    border: solid 2px #f9004d;
}

@media only screen and (max-width:800px) {
    .main {
        flex-direction: column;
    }
    .main img {
        width: 80%;
        padding-bottom: 30px;
    }
    .about-text {
        width: 80%;
    }
    .about-text h1 {
        display: none;
    }
}