* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

section {
    padding-bottom: 80px;
    height: 100vh;
}

.about {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    position: relative;
}

.about-us {
    margin-left: 80px;
    position: absolute;
    top: 25%;
}

.about-us-title {
    color: rgba(255, 255, 255, 0.774);
    font-size: 40px;
    padding-bottom: 50px
}

.about-us-para {
    color: rgba(255, 255, 255, 0.774);
    margin-top: 10px;
    width: 50%;
    text-align: left;
    font-size: 1.5rem;
}

.backdrop {
    width: 100%;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -2;
}

button {
    width: 200px;
    padding: 15px;
    margin: 20px 5px;
    text-align: center;
    border-radius: 25px;
    color: black;
    border: 2px;
    font-size: 20px;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background: rgb(127, 75, 224);
    transition: ease 0.6s;
    color: white;
}