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

:root {
    --font-family: 'Outfit', sans-serif;
    /* ### Neutral */
    --main-bgcolor: hsl(217, 54%, 11%);
    --card-bgcolor:hsl(216, 50%, 16%) ;
    --line-color: hsl(215, 32%, 27%);
    --color-white: hsl(0, 0%, 100%);
    /* ### Primary */

    --softblue-color: hsl(215, 51%, 70%);
    --cyan-color: hsl(178, 100%, 50%);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: var(--main-bgcolor);
    color: var(--color-white);
    font-family: var(--font-family);
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;

}

.card {
    width: 325px;
    height: 564px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--card-bgcolor);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    padding: 20px 20px;
    border-radius: 15px;
    gap: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.card_img{
    width: 100%;
}

.card_img img {
    width: 100%;
    border-radius: 15px;
}

.card_header {
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: left;
}

.card_details {
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    color: var(--softblue-color);
    text-align: left;
}

.card_info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.card_info__value {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cyan-color);
    font-weight: 400;
}

.card_info__time{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--softblue-color);
    font-weight: 300;
}

.card_info__value .iconvalue {
    display: flex;
    align-items: baseline;
    margin-right: 5px;
}

.card_info__time .iconclock {
    display: flex;
    align-items: baseline;
    margin-right: 5px;
}

.card_info:after {
    content: '';
    height: 1px;
    width: 100%;
    background-color: var(--line-color);
    position: absolute;
    top: 100%;
    margin-top: 10px;
}

.card_creator{
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 6px;
}

.card_creator img {
    max-width: 10%;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    margin-right: auto;
}

.card_creator .card_creator__name{
    margin-right: auto;
    font-size: 18px;
    font-weight: 300;
    color: var(--softblue-color);
}

.card_creator .card_creator__name::after {
    content: " Jules Wyvern";
    color: var(--color-white);
}

.footer {
    position: absolute;
    display: flex;
    width: 100%;
    bottom: 0;
}

.attribution {
    font-size: 11px;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

