@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: hsl(217, 54%, 11%);
}
.container {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.card {
    width: 18rem;
    background-color: hsl(216, 50%, 16%);
    padding: 10px;
    margin: 50px auto;
    border-radius: 10px;
}

.card-img-top {
    border-radius: 15px;
}

.eye-hover {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 10px;
    width: 93%;
    height: 53%;
    opacity: 0;
    transition: 0.3s ease;
    background-color: hsl(178, 100%, 50%, 0.4);
    border-radius: 15px;
}

.eye-hover:hover {
    opacity: 1;
    cursor: pointer;
}




.card-text {
    color: hsl(215, 51%, 70%);
    font-size: 15px;
}
h4 {
    color: hsl(215, 51%, 70%);
    padding-bottom: 10px;
    font-weight: 600;
}

h4:hover {
    color: hsl(178, 100%, 50%);
    
}

.card-body {
    padding: 10px 0;
}

.ethereum {
    color: white;
    color: hsl(215, 51%, 70%);
    padding: 0;
    font-size: 15px;
}

ul li{
    display: inline;
    list-style: none;
}

.eth {
    padding-right: 85px;
    color: hsl(178, 100%, 50%);
    font-weight: 400;
}

hr {
    border: 0;
    border-top: 2px solid hsl(215, 32%, 27%);
    display: flexbox;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
}

.creator{
    color: hsl(215, 51%, 70%);
    font-size: 15px;
}

.creator > img {
    vertical-align: middle;
    width: 30px;
    border: 1px solid hsl(0, 0%, 100%);
    border-radius: 50%;
}

.creator > span {
    padding-left: 10px;
}

a {
    text-decoration: none;
    color: hsl(215, 51%, 70%);
}

a:hover {
    color: hsl(178, 100%, 50%);
}
