@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(217, 54%, 11%);
    font-family: 'Outfit', sans-serif;
}

section{
    height: 550px;
    width: 300px;
    background-color: hsl(216, 50%, 16%);
    border-radius: 10px;
    padding: 20px;
    animation-name: rout;
    animation-duration: 2s;
}

@keyframes rout{
    from{
        transform: translateX(-1000px);
    }
}

.imgcov{
    width: 260px;
    height: 260px;
    border-radius: 10px;
    cursor: pointer;
}

.imgcov:hover{
   opacity: 30%;
}

.glass{
    position: absolute;
    top: 200px;
    left: 500px;
}

.statestic{
    display: flex;
    justify-content:space-between;
    align-items: center;
    border-bottom: solid 1px rgba(255, 255, 255, 0.308);
    padding: 20px 0 20px 0;
}

.statestic div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

h1{
    color: hsl(0, 0%, 100%);
    padding: 20px 0 20px 0;
    font-size: 1.3rem;
    cursor: pointer;
}
h1:hover{
    color: hsl(178, 100%, 50%);
}

.info{
    color: hsl(215, 51%, 70%);
    font-weight: 400;
    font-size: 15px;
}

.iconeth{
    color: hsl(178, 100%, 50%);
    
}

.eth{
    color: hsl(178, 100%, 50%);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

.days{
    color: hsl(215, 51%, 70%);
    font-weight: 400;
    font-size: 15px;
}

.person{
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.person p{
    color: hsl(215, 51%, 70%);
    padding: 17px;
    font-size: 15px;
}

.person p span{
    color: hsl(0, 0%, 100%);
    cursor: pointer;
}

.person p span:hover{
    color: hsl(178, 100%, 50%);
}

.avatar{
    width: 30px;
    font-weight: 300;
    border: solid 1px white;
    border-radius: 50%;
    
}