main{
    margin-top: 100px;
}

.img-and-intro-para{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.img-and-intro-para p{
    word-wrap: break-word;
}

.image-section{
    width: 450px;
    height: 500px;
}

.image-section img{
    width: 100%;
    height: 100%;
}

.intro-para{
    width: 600px;
    height: auto;
    color: rgb(56, 56, 56);
}

.social-icons-intro{
    margin-top: 30px;
    margin-left: -10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons-intro a{
    width: 15px;
    height: 15px;
    padding: 15px;
    transition: background-color 0.5s linear;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons-intro i{
    color: black;
    font-size: 25px;
    border-radius: 50%;
    transition: background-color 0.3s linear;
}

.social-icons-intro a:hover{
    background-color: rgb(150, 150, 150);
}

@media only screen and (max-width:368px){
    .image-section{
        width: 370px;
    }
}

@media only screen and (max-width:320px){
    .image-section{
        height: 400px;
    }
}

@media only screen and (max-width:282px){
    .image-section{
        width: 300px;
    }

    .social-icons-intro i{
        font-size: 20px !important;
    }
}

@media only screen and (max-width:260px){
    .image-section{
        height: 250px;
    }
}

@media only screen and (max-width:259px){
    .social-icons-intro i{
        font-size: 36px !important;
    }
}

@media only screen and (max-width:1069px){
    .intro-para{
        width: 100%;
        text-align: center;
    }

    .social-icons-intro{
        justify-content: center;
    }
}