@import url('https://fonts.google.apis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.about {
    position:relative;
    width: 100%;
    display: flex;
}
.about .contentBx { 
    background:#2d4494;
    padding: 100px;
    width: 50%;
}
.about-heading {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.about-text { 
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}
.about .imgBx {
    background: url(/Pictures/Assets\ /backgrounds/CustomTech.jpeg);
    width: 50%;
    background-size: cover;
    background-position: center;
}
.about .button {
    background-color: #bd3d89;
    align-self: center;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
  }
.about .button:hover {
    background-color:#a8367a;
}