.content_1::before{
    content: "";
    width: 100%;
    height: 10rem;
    position: absolute;
    background-color: black;
    opacity: 0.2;
    top: -7rem;
    transform: skewY(5deg);
    z-index: -1;
}
.dotted-list li {
    position: relative;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 18px;
  }
.dotted-list {
    padding-left: 25px;
}
.dotted-list li::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background-color: rgb(61, 61, 61);
}
#submit {
    transition: all 0.5s ease;
}
#submit:hover {
    filter: brightness(2);
}