body{
    background: linear-gradient(#03045E,#023E8A,#0077B6,#0096C7,#48CAE4,#013a63);
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
}
header {
      position: fixed; /* Makes the header fixed at the top */
      top: 0;          /* Positions the header at the top of the page */
      left: 0;         /* Positions the header at the left edge of the page */
      width: 100%;    /* Ensures the header spans the entire width of the page */
      z-index: 100;    /* Ensures the header is above other content (if needed) */
}
.main-heading{
    margin-bottom: 50px;
    box-shadow: 0 2px 4px rgba(0, 255, 204, 0.2);
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding:5px 25px;
    color:white;
    display: flex;
    justify-content: end;
    align-items: center;
    background-image: url(Algo.png);
    background-size: cover;
    font-size: 25px;
    gap: 25px;
}
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);
}
.algo-logo{
    width:60px;
    border:2px solid white;
    border-radius: 50%;
    margin-right:700px;
}
.head-items{
    border:none;
    border-radius: 5px;
    margin-right: 30px;
    font-size: large;
}
.head-items:hover{
    background-color: whitesmoke;
    color: black;
    cursor: pointer;
}
.heading-items{
    
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 300px;
    margin-bottom: 320px;
    font-size: larger;
}
.heading{
    display: flex;
    justify-content: center;
    color:white;
    margin-top: 50;
    
}
.fa-star{
    color:gold;
    font-size: 25px;
    margin-right: 10px;
    margin-left:8px;
}
.main-ques{
    /* border:1px solid green; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 400px;
    gap:200px 140px;
    margin-bottom: 120px;
}
.questions-box{
    
    border-radius: 40px;
    border-left: 4px solid white;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    border-right:4px solid white;
    width:600px;
    height: 450px;
    padding-top: 10px;
    padding-right:30px;
    padding-left:30px;
    padding-bottom:2px;
}
.top-name{
    margin-bottom: 50px;
    margin-left:auto;
    text-align: center;
    margin-right:auto;
    border:1px solid whitesmoke;
    color:white;
    background: linear-gradient(#03045E,#023E8A,#0077B6,#0096C7,#48CAE4,#015794);
    width: 280px;
    border-radius: 20px;
    box-shadow: 0px 0px 8px 2px black;
}
.problems:hover{
    background-color: whitesmoke;
    color:black;
    font-size: larger;
    font-weight: bolder;
    cursor: pointer;
    transform: translateY(-5px);
}
.problems{
    display:flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid black;
    color:white;
    margin-bottom: 23px;
    border-radius:20px;
    padding:5px;
    font-family: "Cormorant", serif;
    font-weight:bold;
    font-size:larger;
}
.online-res{
    display: flex;
    justify-content: space-evenly;
    margin-right:40px;
}
.leetcode{
    width:30px;
    margin-right: 50px;
}
.utube{
  width: 30px;
}