
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.om_wrapper {
    margin: 20px;
    width: min(500px, 90vw);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.om_wrapper h2 {
    position: relative;
    margin: 20px;
    font-size: 2em;
    color: var(--light-color);
}
.om_wrapper p {
    position: relative;
    margin: 20px;
    color: var(--light-color);
    font-size: 1.2em;
}

.om_wrapper h2::after {
    content: "";
    background-color: var(--dark-color);
    opacity: 0.8;
    position: absolute;
    bottom: -10%;
    left: -10%;
    height: 120%;
    width: 120%;
    z-index: -2;
    border-radius: 10px;
}

.divider {
  display: block;
  width: 100%;
  height: 100px;
  fill: var(--secondary-color);
}

.sec_1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    padding-bottom: 30px;
}

.sec_1 h2 {
    color: var(--dark-color);
}
.sec_1 p {
    color: var(--dark-color);
    line-height: 1.6;
}
