*{
    font-family: 'outfit';
    font-size: 18px;
    color: hsl(215, 51%, 70%);
}
body{
    background: hsl(217, 54%, 11%);
}
main{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.caixa{
    background-color: hsl(216, 50%, 16%);
    display: flex;
    flex-direction: column;
    width: 300px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.caixa figure{
    background: url(../images/image-equilibrium.jpg);
    background-size: auto 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.azul{
    background: rgba(0, 204, 255, 0.486);
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.azul img{
    border-radius: 10px; 
    height: 50px;
    width: 50px;
}
.azul img:hover, .azul:hover{
    transition: 0.3s;
    opacity: 100%;
}
.caixa .info a{
    transition: .2s;
    text-decoration: none;
    color: hsl(0, 0%, 100%);
    font-size: 23px;
}
.caixa .info p{
    font-size: 18px;
    margin: 20px 0;
}
.eth{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    padding: 5px 0;
    border-bottom: 1px solid;
    border-color: hsl(215, 32%, 27%);
    padding-bottom: 14px;
}
.eth-info, .relogio{
    display: flex;
}
.eth-info h2{
    color: hsl(178, 100%, 50%);
}
.eth img{
    height:16px;
    padding-right: 10px;
}
.avatar{
    display: flex;
    margin-top: 15px ;
    align-items: center;
}
.avatar img{
    height: 30px;
    border: 1px solid #ffffffc0;
    border-radius: 50%;
    margin-right: 20px;
    margin-bottom: 0;
}
.avatar a{
    text-decoration: none;
    margin-left: 3px;
    color:hsl(0, 0%, 100%) ;
    transition: .2s;
}
.avatar a:hover, .caixa .info a:hover{
    transition: .2s;
    color:hsl(178, 100%, 50%) ;
}
footer{
    background-color: hsl(215, 32%, 27%);
    padding: 30px 0;
    font-size: 16px;
}
.attribution{
    font-size: 16px;
}
.attribution a{
    color: hsl(178, 100%, 50%);
}