*{
    padding: 0;
    margin: 0;

    box-sizing: border-box;

    font-family: "Outfit", sans-serif;

}

body{
      background-color: #0d192c;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
}



 .card{
  width: 350px;
  height: auto; 
  padding: 24px 24px 32px 24px;
  border-radius: 15px;
  background-color: #15263f;
 }


 .main-img{
    width: 100%;

    border-radius: 8px;
}

h1{
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
  color: white;

  transition: color 0.2s;
}

h1:hover{
  color: #00fff8;
  cursor: pointer;
}


.description{
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44;
  color: #8bacd9;
}


.info{
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-top: 25px;

}

.crypto,
time{
    display: flex;
    align-items: center;

    gap: 7px;
}

.crypto span{
  font-size: 16px;
  font-weight: 600;
  color: #00fff8;
} 

.time span{
  color: #8bacd9;
}

hr{
  height: 1px;
  background-color: #2e405a;
  border: none;

  margin-block: 24px;
}


.profile{
    display: flex;
    align-items: center;

    gap: 16px;

    /* margin-top: 41px; */

}


.profile img{
    width: 33px;

    border: 2px solid white;

    border-radius: 100px;
}

.profile p{
  color: #8bacd9;
}


.profile span{
    transition: color 0.2s;
}

.profile span:hover{
    color: #00fff8;
    cursor: pointer;
}