*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "rubik";
}
body{
    background-color:#000020 ;
}
#wrapper{
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}
.container{
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

}
.container h1{
    margin: 20px 0;
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    background: linear-gradient(to right, #ffbd23, #fd7201);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}
.card{
    width: 32%;/*for spacing*/
    position: relative;
    margin-bottom: 20px;
    border-radius: 50px;
    overflow: hidden;
}
.card img{
    height: 100%;
    width: 100%;
    filter: grayscale(100%);
    box-shadow: 0 0 20px #333;
    object-fit: cover;
}
.card :hover{
    transform: scale(1.03);
    transition: 0.5s;
    filter: drop-shadow(0 0 10px #333);
    transition: 0.3s;
}
.card :hover img{
filter: grayscale(0%);
}
.card figcaption{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    width: 100%;
    height: 20%;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    opacity: 0;
    border-radius: 0 0 10px 10px;
    background: rgba(0, 0, 0, 0.44);
    transition: 0.3s;
}

.card:hover figcaption{
    opacity: 1;
    transform: scale(1.03);
}

.header { 
    display: flex;
    background: #000020; 
    height: 75px;
    align-items: center;
    justify-content: space-between;
    
    #logo {
      float:left;
      margin:0;
      width: 200px;
      margin-left: 50px;
    }
    
    #navlist {
      float: center;
      
      li {
      display: inline;
      list-style-type: none;
      padding-right: 20px;
      }
        a{
          line-height: 50px;
          height: 75px;
          font-size: 26px;
          text-decoration: none;
          font-family: "Rubik";
          background: white;
          -webkit-text-fill-color: transparent;
          -webkit-background-clip: text;
        }
        a:active{
          text-decoration: none;
          background: linear-gradient(to right, #ffbd23, #fd7201);
          -webkit-text-fill-color: transparent;
          -webkit-background-clip: text;
        }
        a:hover{
          text-decoration: none;
          background: linear-gradient(to right, #ffbd23, #fd7201);
          -webkit-text-fill-color: transparent;
          -webkit-background-clip: text;
        }
        a:visited{
          text-decoration: none;
        }
      
    }
    .signout{
        display: inline-block;
        position: relative ;
        text-align: center;
        line-height: 50px;
        color: black;
        text-decoration: none;
        z-index: 9;
        height: 50px;
        width: 100px;
        border-radius: 10px;
        font-size: 20px;
        margin-right: 50px;
        background: linear-gradient(to right, #ffbd23, #fd7201);
      } 
      
      .signout-helper{
        position: absolute;
        height: 50px;
        width: 100px;
        margin-left: -10px;
        z-index: -1;
        border-radius: 10px;
        opacity: 0;
        transition: opacity 0.5s linear;
        background: linear-gradient(to right, #fd7201,#ffbd23);
      }
      .signout:hover .signout-helper{
        opacity: 1;
    }
}

.action {
    position: relative;
    margin-right: 30px;
    z-index: 10;
  }
  
  .action .profile {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    z-index: 10;
  }
  
  .action .profile img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: white;
    
  }
  
  .action .menu {
    position: absolute;
    top: 120px;
    right: -10px;
    padding: 10px 20px;
    background: #fff;
    width: 200px;
    box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
  }
  
  .action .menu.active {
    top: 80px;
    visibility: visible;
    opacity: 1;
    z-index: 10;
  }
  
  .action .menu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 28px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
    z-index: 10;
  }
  
  .action .menu h3 {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 20px 0;
    font-weight: 500;
    color: #555;
    line-height: 1.5em;
    z-index: 10;
  }
  
  .action .menu h3 span {
    font-size: 14px;
    color: #cecece;
    font-weight: 300;
    z-index: 10;
  }
  
  .action .menu ul li {
    list-style: none;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    z-index: 10;
  }
  
  .action .menu ul li img {
    max-width: 20px;
    margin-right: 10px;
    opacity: 0.5;
    transition: 0.5s;
    z-index: 10;
  }
  
  .action .menu ul li:hover img {
    opacity: 1;
    z-index: 10;
  }
  
  .action .menu ul li a {
    display: inline-block;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: 0.5s;
    z-index: 10;
  }
  
  .action .menu ul li:hover a {
    background: linear-gradient(to right, #ffbd23, #fd7201);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    z-index: 10;
  }
  
