*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Outfit', sans-serif;
    background-color: #0D1A2D;
    color: hsl(0, 0%, 100%);
    display: flex;
    justify-content: center;    
    align-items: center;
    height: 100vh;
}

hr{
    width: 85%;
    border: 0;
    height: 1px;
    background-color: white;
}

.card{
    width: 300px;
    height: 450px;
    border-radius: 10px;
    background-color: #15273F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.txt{
    width: 80%;
    height: 35%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: space-around;
}

.txt h1{
    font-size: 1.2rem;
}

.txt p{
    font-size: 0.9rem;
    color: hsl(215, 51%, 70%);
}

.price{
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: space-between;
}


.img{
    width: 80%;
    height: 50%;
    border-radius: 10px;
    background-image: url("./image-equilibrium.jpg");
    background-size: cover;
    background-position: center;

}

.name{
    width: 80%;
    height: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;

}

.creator{
    display: flex;
    align-items: center;

}

.creator img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}
