main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(88, 88, 88);
}

.content-section{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: rgb(235, 235, 235);
    gap: 10px;
    margin-bottom: 20px;
}

h1{
    margin: 0;
    margin-top: 20px;
    color: orange;
}

h2{
    margin: 0;
    margin-top: 20px;
}

p{
    margin: 0px;
    font-size: large;
}

ul{
    margin: 0;
    font-size: large;
}

.cta{
    /* width: 12; */
    padding: 10px;
    border: 1px solid orange;
    border-radius: 5px;
    color: white;
    background-color: orange;
}

.cta:hover{
    /* color: white; */
    box-shadow: 2px 2px rgb(241, 80, 80);
    color: white;
}


