@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');
/* Mobile-first approach: styles for mobile (default) */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    margin: 0;
    padding: 20px;
    background-color: #0d1a2d;
}

.card {
    background: #15273f;
    padding: 17px;
    width: 100%;
    max-width: 250px;
    border-radius: 27px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.image-container {
    border-radius: 10px;
    overflow: hidden;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;  
    border: 1px solid white; 
    margin-right: 10px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
}

p {
    color: #8bacda;
    font-size: 14px;
    font-weight: 300;
}

.details span {
    display: flex;
    justify-content: space-between;
}

.details {
    display: flex;
    gap: 60px;
    margin-top: 20px;
    align-items: center;
}

.icon {
    display: flex;
}

.icon-clock {
    height: 20px;
    padding: 10px;
}

.ethereum {
    display: flex;
    gap: 8px;
    align-items: center;
}

.creator {
    display: flex;
    align-items: center;
    margin-top: 14px;
}

.creator img {
    margin-right: 30px;
}

.creator p {
    font-size: 14px;
}

.numbers {
    color: aquamarine;
}

.creator span {
    color: white;
    font-weight: bold;
}

hr {
    border: none;
    height: 1px;
    background-color: darkslategray;
}
