* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
}

.customSection {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.customContainer {
    width: 90%;
}
@media screen and (max-width: 1080px) {
    .customContainer {
        width: 95%;
    }
}
