body{
    width: 100%;
    height: 100vh;
    background-color:  hsl(217, 54%, 11%);
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}
main{
    width: 24%;
    height: auto;
    background-color: hsl(216, 50%, 16%);
    border-radius: 10px;
    box-shadow: 5px 5px 50px 5px rgba(0, 0, 0, 0.3);
}
section{
    margin: 20px 25px 0 25px;
}
.image-container{
    background-image: url(./images/image-equilibrium.jpg);
    background-size: cover;
    border-radius: 10px;
    width: 100%;
    height: 250px;
    transition: 0.5s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hover-color{
    background: hsl(178, 100%, 50%);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0;
}
.hover-color:hover{
    cursor: pointer;
    background: hsl(178, 100%, 50%);
    opacity: 0.5;
}
.image-container img{
    margin: auto;
    border-radius: 10px;
    opacity: 0;
    position: absolute;
}
.image-container:hover img{
    opacity: 1;
}
h1{
    color: hsl(0, 0%, 100%);
    font-size: 23px;
}
h1:hover{
    cursor: pointer;
    color: hsl(178, 100%, 50%);
}
p{
    font-size: 18px;
    color: hsl(215, 32%, 27%);
}
.eth-time-bar{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: -15px;
    border-bottom: 1px solid hsl(215, 32%, 27%);
}
.ethereum{
    display: flex;
    align-items: center;
}
.ethereum p{
    color: hsl(178, 100%, 50%);
    padding-left: 5px;
}
.time{
    display: flex;
    align-items: center;
}
.time p{
    padding-left: 5px;
}
.credits{
    display: flex;
    padding-bottom: 20px;
}
.credits img{
    width: 15%;
    height: 15%;
    border: 1px solid hsl(0, 0%, 100%);
    border-radius: 50%;
    margin-top: 10px;
    
}
.credits p{
    margin-left: 25px;
}
.credits a{
    color: hsl(0, 0%, 100%);
}
.credits a:hover{
    cursor: pointer;
    color: hsl(178, 100%, 50%);
}
footer{
    color: hsl(0, 0%, 100%);
    width: 100%;
}
.attribution{ 
    font-size: 15px; 
    text-align: center;
}
.attribution a{ 
    color: hsl(178, 100%, 50%);
}

@media only screen and (max-width: 450px){
body{
    width: fit-content;
}
main{
    width: 90%;
}
.attribution{ 
    font-size: 13px;
}
}