body {
    align-items: center; 
    background-color: hsl(217, 54%, 11%);
    color: hsl(215, 51%, 70%);
    display: flex; 
    font-family: 'Outfit', sans-serif;;
    flex-direction: column; 
    justify-content: center; 
    margin: 0;
}

h3 {
    color: hsl(0, 0%, 100%);
}

p {
    font-size: 16px;
}


/* Main card container */

#container { 
    background-color: hsl(216, 50%, 16%); 
    border-radius: 15px;
    margin: 2rem 0 2rem 0;
    max-width: 25%;
}

/* Card class for the NFT card  */

.card {
    margin: 2rem;
}

.cube-image {
    border-radius: 10px;
    cursor: pointer;
    display: block;
    width: 100%;
    height: auto;
}

.eye-image {
    margin-top: 112px;
}

.equilibrium-container {
    position: relative;
    width: 100%;
}

.overlay {
    cursor: pointer;
    position: absolute; 
    bottom: 0; 
    background: hsl(178, 100%, 50%);
    background: rgba(0, 255, 247, 0.3); 
    width: 100%;
    height: 100%;
    transition: .5s ease;
    opacity:0;
    text-align: center;
    border-radius: 10px;
}

.equilibrium-container:hover .overlay {
    opacity: 1;
  }


/*  Details of the NFT card */

.equilibrium-title {
    cursor: pointer;
}

.equilibrium-title:hover {
    color: hsl(178, 100%, 50%);
}

/*  Ethereum Section */

.ethereum-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.etherium-amt {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
}

.ethereum-text1 {
    color: hsl(178, 100%, 50%);
    margin: 0 0 0 -12px;
}

.clock-img {
    margin: 12px -6px 0 0;
}

.etherium-time {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
}

object {
    margin-top: 1rem;
}

hr {
    border: 0.5px solid hsl(215, 32%, 27%);
    margin-bottom: 1rem;
}

/* Card Footer */

.card-footer {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
}

.profile-image {
    border:1px solid white;
    border-radius: 50%;   
    width: 10%;
}

.profile-text {
    margin: 0 0 0 1rem; 
}

span {
    color: white;
    cursor: pointer;
}

span:hover {
    color: hsl(178, 100%, 50%)
}


/* Footer */

footer {
    margin-bottom: 1rem;
}

.attribution { 
    font-size: 11px; 
    text-align: center; 
}
    
.attribution a { 
    color: hsl(228, 45%, 44%); 
}
