@font-face {
    font-family: 'Outfit', sans-serif;;
    src: url('./Fonts/Outfit-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'Outfit', sans-serif;;
    src: url('./Fonts/Outfit-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Outfit', sans-serif;;
    src: url('./Fonts/Outfit-SemiBold.ttf');
    font-weight: 600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(217, 54%, 11%);
    display: flex;
    justify-content: center;
    align-content: center;
}

.container {
    background-color: hsl(216, 50%, 16%);
    width: 375px;
    height: 625px;
    border-radius: 20px;
    margin-top: 100px;
}

.image-section {
    position: relative;
}

.nft-image {
    width: 335px;
    height: 335px;
    border-radius: 10px;
    margin-top: 20px;
    margin-left: 20px;
    transition: .5s ease;
    backface-visibility: hidden;
    /* background-image: url('./images/image-equilibrium.jpg'); */
    /* object-fit: scale; */
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.image-section:hover .nft-image {
    opacity: 0.3;
}

.image-section:hover .middle {
    opacity: 1;
}

.title {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.title:hover {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    color: hsl(178, 100%, 50%);
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.description {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: hsl(215, 51%, 70%);
    width: 335px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.info-container {
    display: flex;
    justify-content: space-between;
    width: 335px;
    margin-left: 20px;
    margin-bottom: 20px;
}
.eth-icon {
    margin-right: 10px;
}

.price-container {
    display: flex;
}

.price {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: hsl(178, 100%, 50%);
}

.counter-container {
    display: flex;
}

.clock-icon {
    margin-right: 10px;
}

.counter {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: hsl(215, 51%, 70%);
}

.break {
    width: 335px;
    color: hsl(215, 32%, 27%);
    margin-left: 20px;
    border: 0.5px solid hsl(215, 32%, 27%);
}

.creator-container {
    display: flex;
    width: 335px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.profile-image {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 25px;
}

.creator-info {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: hsl(215, 51%, 70%);
    margin-left: 20px;
}

.creator {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: hsl(0, 0%, 100%);
    margin-left: 10px;
}

.creator:hover {
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: hsl(178, 100%, 50%);
    margin-left: 10px;
}




