*{
    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;
  background-image: url(Algo.png);
  background-size: cover;
  padding: 10px 50px;
  box-shadow: 0 2px 4px rgba(0, 255, 204, 0.2);
  
}
img{
    position: relative;
    top: 2px;
    left: 5px;
    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;
}
.subhead{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
.text{
    flex-wrap: wrap;
    margin-bottom: 15px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 50px;
}
.smalltext{
    color: white;
}
.container{
    height: 100%;
    width: 95%;
    background: linear-gradient(#03045E,#023E8A,#0077B6,#0096C7,#48CAE4,#013a63);
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-wrap: wrap;
    padding: 100px;
    gap: 3rem;
}

.box{
    box-shadow: 0px 0px 10px black;
    height: 300px;
    width: 300px;
    border-radius:10%;
    margin-right: 5px;
    position: relative;
    background-color:#e0e0e0;
}
main .images1 img{
    width: 298px;
    height: 230px;
    border-radius: 10%;
    left: 1px;
    
}
.button{
    text-decoration: none;
    position: absolute;
    left: 160px;
    top: 15.8rem;
    color: black;
    font-size: 20px;
}
.box:hover{
    transform: translateY(-5px);
}