body {
    font-family: "Poppins", sans-serif;
}

.container {
    text-align: center;
}

.red__block {
    position: absolute;
    margin-top: -0.5rem;
    left: 1rem;
    top: 1rem;
    width: 98%;
    height: 16rem;
    background: rgb(51,2,9);
    background: linear-gradient(90deg, rgba(51,2,9,1) 0%, rgba(210,5,5,1) 100%);
    z-index: -1;
    overflow-x: hidden;
}

.heading {
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.about__img {
    width: 42%;
}

.about__text {
    font-size: 1.5rem;
    max-width: 42%;
    margin: auto;
    text-align: justify;
}

.first__letter {
    color: rgb(247, 41, 41);
    font-size: 2rem;
    font-weight: bold;
}

.location__heading {
    font-size: 2.5rem;
}

#map {
    height: 25rem;
    width: 42%;
    margin: auto;
}

.copyright__link {
    text-decoration: none;
    color: rgb(247, 41, 41);
}

@media screen and (max-width: 720px) {
    .red__block {
        width: 92%;
        height: 6rem;
    }

    .heading {
        font-size: 2rem;
    }

    .about__img {
        width: 70%;
        margin-top: -0.5rem;
    }

    .about__text {
        font-size: 1.2rem;
        max-width: 70%;
    }

    .location__heading {
        font-size: 2rem;
    }

    #map {
        height: 12.5rem;
        width: 70%;
    }
}