
.div1 {
    background-color: black;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding: 20px;
    text-align: center;
}
#img1 {
    display: block;
    margin: 0 auto;
    width: 300px;
    border-radius: 50%;
    filter: grayscale(200%);
    transition: filter 300ms;
}
#img1:is(:hover, :focus) {
    filter: grayscale(0%);
    filter: drop-shadow(10px 8px 6px #ffff);
}

.heading1 {
    color: white;
    font-family: 'Lucida Handwriting', cursive;
    font-size: 40px;
    text-shadow: 2px 2px #858585aa;
}

.para1,
.para2 {
    color: white;
    font-family: serif;
    font-size: 25px;
    text-shadow: 1px 1px #858585aa;
    text-align: center;
}

.div2 {
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.div3 {
    padding: 10px;
    background-color: rgb(8, 8, 7);
    margin: 10px;
    border-radius: 20px;
    width: calc(50% - 20px);
    text-shadow: 0.5px 0.5px;
    flex-grow: 1;
}

.heading3,
.Points {
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 30px;
    font-family: 'Cursive';
}

.div3:hover {
    background-color: rgb(87, 90, 90);
    text-shadow: 2px 2px #858585aa;
    transform: scale(1.0);
    transition: 0.2s;
}
.container {
    background-color: #646161;
    padding: 10px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 100px;
}

.text-body-secondary {
    color: #333;
    font-size: 30px;
    text-align: left;
}

.follow-me {
    font-size: 30px;
    text-align: left;
    margin-left: 10px;
}

.social {
    display: flex;
    justify-content: space-evenly;
    align-items: center; 
}

.div4 {
    cursor: pointer;
}
.div4:hover{
    transform: scale(1.5);
    transition: 1s;
}
