main {
    padding: 20px;
    min-height: 100vh;
}

.container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    margin: 100px auto;
    margin-top: 100px;
    max-width: 1200px;
    width: 90%;
    z-index: -10;
    box-shadow: 0  0 5px #7e050e;
    backdrop-filter: blur(5px);
    border-radius: 25px;
    padding: 50px;
    color: #fff;
}
.container h2{
    text-shadow: 0 0 10px #000;
    font-style: italic;
    text-decoration:underline;
    margin: 20px auto;
}
.content{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.about-text {
    flex: 1;
    max-width: 50%;
}

.about-text h2 {
    font-size: 2em;
    margin-bottom: 10px;
    text-decoration: unset;
}
.about-text h2::after{
    content: "";
    display: block;
    width: 70px;
    border-bottom: 3px solid #7e050e;
    margin: 5px 0 15px 0;
}

.about-text p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    max-width: 40%;
    margin-left: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}


@media (max-width: 900px) {
    main{
        padding: 0;
    }
    .container{
        justify-content: center;
        margin: 50px auto;
        flex-direction: column;
        padding: 50px auto;
        width: 85%;
        text-shadow:  0 0 10px #000;
    }
    .content{
        flex-direction: column;
        padding: 0;
        
    }
    .about-text p{
        text-align: center;
    }
    .about-image{
        margin-left: 0;
        max-width: 100%;
    }
}
@media (max-width: 550px) {
    .container{
        width: 90%;
        padding: 10px;
    }
    .about-text{
        max-width: 90%;
    }
}