.designingContainer {
    position: relative;
    padding: 15%;
    background-image: url('/desing/background2.jpeg');
    height: 100%;
    width: auto;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.designingContainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.designingContainer h1, .designingContainer p{
    position: relative;
    z-index: 1;
    color: white;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}