.main {
    flex: 1;
}

.aboutme {
    /* padding: 25px; */
    font-size: 24px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.aboutme-content {
    /* width: 40%; */
    padding: 64px 0px 64px 64px;
    flex: 1;
}

.aboutme-img {
    border-radius: 250px;
    width: 50vw;
    max-width: 500px;
    max-height: 500px;
    box-shadow: 0px 0px 20px 0px #fff;
    margin: 0px 100px;
    /* filter: brightness(0); */
}

@media only screen and (max-width: 1300px) {
    .aboutme {
        flex-direction: column-reverse;
    }

    .aboutme-img {
        margin-top: 50px;
    }

    .aboutme-content {
        padding: 64px;
    }
}

@media only screen and (max-height: 768px) {
    .aboutme {
        font-size: 3vh;
    }

    .aboutme-img {
        width: 50vh;
        max-width: 500px;
        max-height: 500px;
        box-shadow: 0px 0px 20px 0px #fff;
        /* filter: brightness(0); */
    }
}

@media only screen and (max-width: 1055px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 15px 0px;
    }

    .aboutme-content {
        width: 70%;
    }

    .aboutme-img {
        width: 70vw;
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 550px) {
    nav {
        flex-direction: column;
        align-items: center;
    }
}