@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    list-style: none;
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 0px;
    margin: 0px;
}

body {
    background: rgb(54, 71, 97);
}

li {
    display: flex;
    align-items: center;
    margin: 10px 30px; 
    
}

a {
    position: relative;
}

/*this is the part on underline style css*/
a::after {
    content: '';
    background-color: #fff;
    height: 2px;
    width: 0%;
    display: block;
    position: absolute;
    bottom: 0;
    left:8px;
    transition: 0.4s ease-in-out;
}

a:hover::after {
    content: '';
    background-color: #fff;
    height: 2px;
    width: 85%;
    position: absolute;
    display: block;
    bottom: 0;
    left: 8px;
}



a {
    padding: 0px 10px;
}

.link {
    padding: 0px 100px;
}

.parent {
    margin: 40px 0px;
}

.head {
    background: rgb(185, 195, 206);
}

.head {
    text-align: center;
    width: 26rem;
    height: 40rem;
    border-radius: 100px 10px 100px 10px;
    transition: all 0.3s ease;
}

.head:hover {
    box-shadow: 0px 0px 5px rgb(149, 172, 209);
}

.parent .head h2 {
    font-size: 60px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.parent .head .prof {
    width: 250px;
    border-radius: 100%;
    padding: 8px;
    border: 5px solid rgb(0, 0, 0);
    margin: 20px 0px 0px 0px;
    box-shadow: 0px 0px 4px black;
}

.footer {
    display: flex;
    background: lightslategray;
    border-radius: 100px 0px 0px 0px;
    height: 20vh;
    margin-bottom: 0vh;
}

.footer footer {
    margin: auto;
    font-size: 19px;
}

.footer footer p {
    color:#fff;
    text-align: center;
}

.header {
    display: flex;
    background: lightslategray;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 0px 0px 100px 0px;   
}

header {
    margin: auto;
    font-size: 25px;
}

header h1 {
    color:#fff;
}