html,
body {
  margin: 0;
  overflow: hidden;
}
body {
    background-color: #0d192c;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
  }
  
  /* Main image with hover "animation" */
  .nft-card {
    background-color: #15263f;
    width: 302px;
    height: 548px;
    padding: 24px;
    border-radius: 15px;
    position: relative;
  }
  .rect {
    width: 100%;
    height: 100%;
    background-color: cyan;
    border-radius: 10px;
  }
  .images {
    position: relative;
    width: 302px;
    height: 302px;
    overflow: hidden;
  }
  .equilibrium {
    position: relative;
    bottom: 100%;
    border-radius: 8px;
  }
  .eye {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 136px 129px;
    display: none;
  }
  .images:hover .equilibrium {
    opacity: 0.5;
  }
  .images:hover .eye {
    display: inline;
  }
  img {
    max-width: 100%;
    max-height: 100%;
  }
  
  /* There goes cards mainc informaiton. like title, caption price and etc. */
  
  h1,
  p {
    font-family: outfit;
  }
  h1 {
    color: white;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    margin: 24px 0px 16px 0px;
  }
  h1:hover {
    color: #00fff8;
  }
  
  .main-info p {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    margin: 0px;
  }
  #caption {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #8bacd9;
    margin: 0px 0px 24px 0px;
  }
  .price-date {
    display: flex;
    justify-content: space-between;
    padding: 0px;
  }
  #price-info {
    color: #00fff8;
    margin-left: 6.48px;
  }
  #date-info {
    color: #8bacd9;
    margin-left: 7.69px;
  }
  hr {
    height: 0px;
    border: 0.5px solid #2e405a;
    margin: 24px 0px 16px 0px;
  }
  
  /* There goes information about creator */
  
  .creator-avatar {
    border-radius: 50%;
    width: 33px;
    height: 33px;
    border: 1px solid #ffffff;
  }
  .creator-info p {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    bottom: 15px;
  }
  #p1 {
    color: #8bacd9;
    margin-left: 16px;
    margin-right: 5px;
  }
  #creator-name {
    color: white;
    margin: 0px;
  }
  #creator-name:hover {
    color: #00fff8;
  }
  /* Additional styles for links */
  
  a:link {
    text-decoration: none;
    color: white;
  }
  
  a:visited {
    text-decoration: none;
    color: white;
  }
  
  a:hover {
    text-decoration: none;
    color: white;
  }
  
  a:active {
    text-decoration: none;
    color: white;
  }
  
  /* Some Footer Styles */
  footer p{
    margin: 0;
    display: inline;
    font-size: 14px;
    color: white;
  }
  footer {
   margin-top: 30px;
  }
  #name {
    color: cyan;
  }