* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    font-size: 18px;
    background-color: hsl(217, 54%, 11%) !important;
    color: hsl(0, 0%, 100%) !important;
}

main {
    height: 100vh;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

@media (max-height: 550px) {
    main {
        height: 100%;
    }
}

.nft-card {
    background-color: hsl(216, 50%, 16%);
    max-width: 300px;
    border-radius: 10px;
    padding: 1.5rem;
}

.nft-card__link {
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.nft-card__link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background-color 500ms ease-out;
}

.nft-card__link:hover::after {
    background: rgba(0,255,247,.6) url("../images/icon-view.svg") center no-repeat;
}

.nft-card__link--image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.nft-card__title {
    font-size: 18px;
    margin: 1rem 0;
}

.nft-card__title--link {
    color: hsl(0, 0%, 100%);
    text-decoration: none;
}

.nft-card__title--link:hover,
.nft-card__title--link:active {
    color: hsl(178, 100%, 50%);
}

.nft-card__description {
    font-size: 16px;
    color: hsl(215, 51%, 70%);
    font-weight: 300;
}

.nft-card__info {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.nft-card__info--value {
    color: hsl(178, 100%, 50%);
}

.nft-card__info--time-left {
    color: hsl(215, 51%, 70%);
}

.nft-card__info--value,
.nft-card__info--time-left {
    font-size: 14px;
}

.icon {
    vertical-align: text-bottom;
}

.nft-card__author {
    color: hsl(215, 51%, 70%);
    padding-top: 1rem;
    border-top: 1px solid hsl(215, 51%, 70%);
    margin-top: 1rem;
    font-size: 14px;
}

.avatar {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 2px solid hsl(0, 0%, 100%);
    border-radius: 50%;
}

.nft-card__author--name {
    color: hsl(0, 0%, 100%);
    text-decoration: none;
}

.nft-card__author--name:hover,
.nft-card__author--name:active {
    color: hsl(178, 100%, 50%);
}

.attribution { 
    font-size: 11px; 
    text-align: center; 
}

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