@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root{
    /* Primary */

--Blue-500: hsl(215, 51%, 70%);
--Cyan-400: hsl(178, 100%, 50%);

    /* Neutral */

--Blue-950: hsl(217, 54%, 11%);
--Blue-900: hsl(216, 50%, 16%);
--Blue-800: hsl(215, 32%, 27%);
--White: hsl(0, 0%, 100%);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body{
    background-color: var(--Blue-950);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.container{
  background-color: var(--Blue-900);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  max-width: 300px;
}

.container > img {
  width: 100%;
  border-radius: 1rem;
}

.container > h2 {
  color: var(--White);
  font-size: 1.5rem;
}

.container > p {
  color: var(--Blue-500);
  font-size: 1rem;
}

.price-date{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-date > p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--Cyan-400);
    font-size: 1rem;
}

.price-date > p:nth-of-type(2){
    color: var(--Blue-500);
}

.creator{
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--Blue-800);
    padding-top: 1rem;
}

.creator > img {
    width: 2rem;
    border: 1px solid var(--White);
    border-radius: 50%;
}

.creator > p {
    color: var(--Blue-500);
    font-size: 1rem;
}

.creator > p > span {
    color: var(--White);
}

