@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}


body {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: center;
    background-color:hsl(217, 54%, 11%);
}
.container {
    display: flex;
    flex-direction: column;
    width:350px;
    height:600px;
    padding:25px;
    background-color: hsl(216, 50%, 16%);
    border-radius:18px;
    box-shadow: 0px 0px 30px 5px rgba(7, 11, 19, 0.75);


}

#equilibrum {
    border-radius:10px;
    width:100%;
   
}
#img-top {
    position: relative;
    display: block;
}
#img-view img {
    position: absolute;
    width:50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%)

}
#img-view {
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width: 100%;
    background-color:hsla(178, 100%, 50%,0.5) ;
    display:none;
    border-radius:10px;
}
#img-top:hover #img-view  {
    display:block;
}

#equi-head {
    margin-top:25px;
    font-size:22px;
    font-weight:600;
    
}
#equi-head a {
    color:hsl(0, 0%, 100%);
    text-decoration:none;
}
#equi-head a:hover {
    color:hsl(178, 100%, 50%);
}
#equi-artic {
    color:hsl(215, 51%, 70%);
    font-weight:300;
    margin-top: 17px;
    line-height:1.4;
}
#days {
    display:flex;
    margin-top: 23px;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(53, 53, 53);
}
#eth {
    color:hsl(178, 100%, 50%);
    height:25px;
    
    font-size:16px;
    
}
#eth img {
    position:relative;
    top:4px;
}
#clock {
    color:hsl(215, 51%, 70%);
    font-weight:300;
    font-size:16px;
    
}
#clock img {
    position:relative;
    top:4px;
}

#crt-btm {
    margin-top:5px;
    height:30px;
    color:hsl(215, 51%, 70%);
    font-size:16px;
}
#avatar {
    width: 32px;
    border:1px solid white;
    border-radius: 50%;
    position: relative;
    top:12px;
}
#crt-btm a {
    color:hsl(0, 0%, 100%);
    font-size:16px;
    font-weight: 300;
    font-size: 15px;
    text-decoration: none;
}
#crt-btm a:hover {
    color:hsl(178, 100%, 50%);
}

@media (max-width:425px) {
    .container {
        
        width:300px;
       height:550px;
        
    
    }
   
}