* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100%;
    width: auto;
    overflow-x: hidden;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

.banner {
    margin-top: 0;
    height: 17rem;
    width: 100%;
}

.photo img {
    height: 11rem;
    width: auto;
    display: block;
    margin: -50px auto 0 auto; 
    margin-left: 200px;
}

h1 {
    text-align: center;
    margin-top: 10px;
    font-size: 3rem;
    color:#000;
    font-family: poppins sans-serif;
}

h2{
    padding: 2rem 10rem;
    text-shadow: #fff;
    /* font-style:italic; */
    color: #020202;
}
span{
    color:#b74b4b;
    text-decoration: dotted;
    font-weight: bold;
    font-style:oblique;
}
p{
    color: #b74b4b;
    /* text-align: center;    */
    margin-left: 10rem;
    font-weight: bold;
    font-size: 3rem;
    font-style: italic;
}

.cointainer{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 5rem;
    gap: 2rem; 
    max-width: 1200px;
    margin: auto; 
}
.cointainer img{
    height: 300px;
    flex-wrap: wrap;
    width: auto;
}
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        padding: 1rem;
    }

    p {
        font-size: 1.5rem;
        margin-left: 40px;
    }
    .banner {
        height: 12rem;
    }
    .photo img {
        height: 8rem;
        margin-left: 8rem; 

    }

    .cointainer {
        flex-direction: column;
        padding: 1rem;
    }
}