body {
        font-family: Arial, Helvetica, sans-serif;
        margin: 0;
        background-color: #5dd3b0;
    }
    #wrapper{
        margin: auto;
        background-color: #b9f3ec;
    }
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        background-color: #b4c799;
    }
    nav > a {
        margin: 15px;
        text-decoration: none;
    }
    nav > a:hover {
        color: #f06e3d;
        text-decoration: underline;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    main {
        padding: 15px;
    }
    .headerCenter {
        flex: 1;
        text-align: center;
    }
   .mainContent {
        background-image: url("mycolors.png");
        background-size: cover;
        background-position: center;
        margin-top: 20px;
        padding: 20px;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .button {
        display: inline-block;
        border: none;
        color: white;
        padding: 12px 20px;
        text-align: center;
        text-decoration: none;
        font-size: 16px;
        margin: 4px 2px;
        border-radius: 4px;
    }
    .button1 {
        background-color: #04AA6D;
    }

    .button2 {
        background-color: #008CBA;
    }
   .textBox {
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 15px;
        border-radius: 8px;
        max-width: 300px;
        width: 100%;
    }
   .bottomSection {
        display: flex;
        justify-content: center;
        gap: 20px;
        max-width: 1000px;
        margin: auto;
        padding: 15px;
    }
   .left {
        flex: 1;
        background-color: #f06e3d;
        color: white;
        padding: 25px;
        border-radius: 10px;
    }
    .left li {
        padding: 20px;
    }
    .right img {
        width: 100%;
        height: 100%;
    }
    .right {
        flex: 1;
    }
    footer {
        padding: 15px;
        background-color: #b4c799;
        text-align: center;
        margin-top: 30px;
    }
@media only screen and (max-width: 900px) {
    #wrapper {
        width: 100%;
        border: none    ;
    }
    header > img {
        width: 25%;
        height: auto;
        float: right;
    }
}
@media only screen and (max-width: 510px) {

    nav {
        flex-direction: column;
    }   
    main {
        flex-direction: column;
    }   
    nav > div {
        width: auto;
        margin: 5px;
    }
    main > div {
        margin: 5px;
    }
    header > img {
        width: 40%;
        height: auto;
        float: right;
    }
}