.banner {
    background-image: url(../img/style/banner-aboutme.png);
    background-size: cover;
    height: 300px;
}

.main_content {
    display: flex;
    flex-direction: row;
	justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    background-color: whitesmoke;
}

.main_content div {
    height: 300px;
	width: 300px;
    box-shadow: 17px 20px 1px rgba(128, 128, 128, 0.4);
    border-right: 1px solid rgba(34, 32, 32, 0.322);
    transition: all 0.2s ease;
    background-color: white;
    border-radius: 1%;
}

.main_content div img {
    width: 300px;
    height: auto;
    border-radius: 1%;
}

.main_content div:hover {
    transform: scale(1.03);
    cursor: pointer;
}