:root {
    --primary: hsla(237, 97%, 13%, 1.65);
    --secondary: hsla(270, 95%, 16%, 0.65);
}


body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    height: 100vh;
    width: 100vw;
    margin: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary)),
        url("background-img.jpg") no-repeat center center / cover;
}

.profile img {
    width: 250px;
    height: 250px;
    border: 1px solid #dbd0d0;
    border-radius: 50%;
    object-fit: cover;
    image-rendering: pixelated;
}


.p {
    min-height: 100vh;
    align-items: center;
}

.profile {
    text-align: center;
}

.wrapper {
    display: inline-flex;
}

.wrapper .static-txt {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
}



.dynamic-txt li {
    list-style: none;
    font-size: 30px;
    font-weight: 500;
    color: #dc3545;
}


.wrapper .dynamic-txt {
    line-height: 50px;
    height: 50px;
    overflow: hidden;
}


.web-developer {
    position: relative;
}

.web-developer::after {
    content: '';
    position: absolute;
    left: 0;
    height: 2px;
    width: 10%;
    background: #fff;
    top: 25px;

}

.paragraph p {
    text-align: justify;
    font-size: 18px;
    margin: 20px 0px;
}

.getintouch a {
    color: #000;
    border: 1px solid gray;
    background: #fff;
    padding: 10px;
    border-radius: 30px;
    text-decoration: none;
}

.icons i {
    font-size: 25px;
    color: #fff;
}

.icons a {
    color: #fff !important;
    text-decoration: none;
}

/*@media only screen and (max-width: 600px) {
    .p {
        min-height: auto;
        margin-top: 50px;
    }
}*/