*{
    margin: 0 ;
    padding: 0;
    box-sizing: border-box;
}
 body{
    height: 100vh;
    width: 100vw;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background: linear-gradient(#03045E,#023E8A,#0077B6,#0096C7,#48CAE4,#013a63);
    background-repeat: no-repeat;
    background-attachment: fixed;   
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background-image: url(Algo.png);
  background-size: cover;
  padding: 8px 50px;
  box-shadow: 0 2px 4px rgba(0, 255, 204, 0.2);
  
}
img{
    position: relative;
    top: 2px;
    left: 10px;
    height: 50px;
    border-radius: 100%;
    background-color: white;
    cursor: pointer;
    border: 2px solid white;
}
nav ul {
  display: flex;
  font-size: 25px;
  gap: 25px;
  list-style: none;
}
nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  background-color: white;
  color: black;
  transform: translateY(-5px);
}
a:active{
    background-color:  #0077B6;
}
.profiles{
    width:100%;
    display:flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}
.profile1,.profile2,.profile3,.profile4,.profile5{
    width:400px;
    height: 350px;
    margin-bottom: 30px;
    position: relative;
}
.profile-pic1,.profile-pic2,.profile-pic3,.profile-pic4,.profile-pic5{
    position: absolute;
    top:2px;
    left:140px;
    width: 30%;
    height: 30%;
    border-radius: 100%;
    background-color: aqua;
    border: 3px solid black;
    z-index:1;
}
.profile-info1,.profile-info2,.profile-info3,.profile-info4,.profile-info5{
    position: absolute;
    top:15%;
    left:55px;
    width:70%;
    height:70%;
    border-radius: 30px;
    background-color: #2c2c2c;
    color:white;
    text-align: left;
    cursor: pointer;
    padding-left:15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 25px;
}
.profile-info1:hover{
    box-shadow: 0px 0px 20px 5px whitesmoke;
    transform: translateY(-5px);
}
.profile-info2:hover{
    box-shadow: 0px 0px 20px 5px whitesmoke;
    transform: translateY(-5px);
}
.profile-info3:hover{
    box-shadow: 0px 0px 20px 5px whitesmoke;
    transform: translateY(-5px);
}
.profile-info4:hover{
    box-shadow: 0px 0px 20px 5px whitesmoke;
    transform: translateY(-5px);
}
.profile-info5:hover{
    box-shadow: 0px 0px 20px 5px whitesmoke;
    transform: translateY(-5px);
}
footer{
    background-color: #2e2e2e;
    position: relative;
    bottom: 30px;
}
footer p{
   color: white;
   text-align: center;
   font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS',sans-serif;
   line-height: 20px;
   text-align: justify;
   font-size: 20px;
   padding-left: 30px;
   padding-right: 30px;
}