.full-width-one{
    width: 100%;
    height: auto;
    padding:3em;
    background-color: rgb(219, 228, 238);
}

.full-width-two{
    width: 100%;
    height: auto;
    padding:3em;
    background-color: rgb(173, 203, 238);
}

.one {
    padding-top:80px;
}

.two {
    padding-top:80px;
}

.acaImage {
    max-width: 500px;
    float:right;
}

.pushDownTwo {
    padding-top: 35px;
    padding-bottom: 50px;
}

.orange {
    color:rgb(255, 102, 0);
    font-weight: bolder;
}

.c3 {
    font-size: large;
    font-weight: bolder;
}

.c2 {
    font-size: large;
    font-weight: bolder;
}

.c6 {
    font-weight: lighter;

}

.cool-button {
    display: inline-block;
    text-decoration: none;
    background-color: #2ab8d0;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(42, 184, 208, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cool-button::before {
    content: "";
    position: absolute;
    background: white;
    width: 120%;
    height: 0%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.2;
    transition: all 0.6s ease;
}

.cool-button:hover::before {
    height: 500%;
}

.cool-button:hover {
    background-color: #23a0b6;
    box-shadow: 0 6px 20px rgba(42, 184, 208, 0.5);
    transform: translateY(-2px);
}


@media (max-width: 800px) {
    .full-width-one{
        padding:1em;
        text-align: center;
    }
    .full-width-two{
        padding:1em;
        text-align: center;
    }
    h1 {
        font-size: 2em;
    }
    .one {
        padding-top:10px;
    }
    .acaImage {
        width: 320px;
    }
  }