.aboutbox {
    margin: 40px;
    margin-top: 100px;
}

.abouttitle {
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 2px;
    margin: 30px;
}

.aboutphaseone {
    letter-spacing: 0.7px;
    margin: 30px;
    width: 500px;
    font-size: 20px;

    font-weight: 500;
}

.aboutphasetwo {
    letter-spacing: 0.8;
    font-size: 20px;
    margin: 30px;
    width: 500px;
    font-weight: 500;
}

.aboutboxbutton {
    display: flex;
    align-items: center;
}

.aboutboxbutton a {
    text-decoration: none;
    color: rgb(236, 154, 1);
    background-color: white;
    padding: 20px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    transition: 0.4s;
}

.aboutboxbutton a:hover {
    background-color: rgb(3, 114, 108);
}

@media (max-width: 780px) {
    .container {
        display: flex;
        flex-direction: column;
    }

    .aboutbox {
        margin: 0px;
        
    }

    .abouttitle {
        font-size: 20px;
        margin: 20px;
        margin-top: 30px;
        margin-bottom: 0px;
    }

    .aboutphaseone, .aboutphasetwo {
        font-size: 15px;
        width: 90vw;
        margin: 0px;
        padding: 20px;

        padding-bottom: 10px;
    }

    .aboutboxbutton {
        display: flex;
        justify-content: center;
    }

    .aboutboxbutton a {
        padding: 5px;
        border-radius: 10px;
        font-size: 15px;
        margin-top: 30px;
    }

    .footer {
        margin-top: 0px;
    }
}

