*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  color: white;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(217, 54%, 11%);
  min-height: 100vh;
}

.container{
  width: 250px;
  padding: 17px;
  background-color: hsl(216, 50%, 16%);
  border-radius: 10px;
}

.container img{
  width: 100%;
  border-radius: 10px;
}

.profile img{
  width: 30px;
  border-radius: 50%;
  border: solid 1px white
}

.header{
  font-weight: 600;
  margin: 15px auto;
  font-size: 18px;
}

.info{
  font-size: 15px;
  color: hsl(217, 20%, 61%);
  margin-bottom: 15px;
}

.more-info{
  display: flex;
  justify-content: space-between;
}

.more-info p:first-of-type{
  font-size: 15px;
  color: hsl(178, 100%, 50%);
  font-weight: 600;
}

.more-info p:first-of-type::before{
  content: url(images/icon-ethereum.svg);
  display: inline-block;
  height: 10px;
  
}

.more-info p:last-of-type{
  font-size: 15px;
  color: hsl(217, 20%, 61%);
}

.more-info p:last-of-type::before{
  content: url(images/icon-clock.svg);
  text-align: center;
}

br{
  color: hsl(217, 20%, 61%);
}

.profile{
  display: flex;
  gap: 7px;
  align-items: center;
}

.profile p{
  font-size: 15px;
  color: hsl(217, 20%, 61%);
}

.user{
  font-size: 15px;
}

.header:hover{
  color: aqua;
  cursor: pointer;
}

.user:hover{
  color: aqua;
  cursor: pointer;
}

