*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --Soft-blue: hsl(215, 51%, 70%);
    --Cyan: hsl(178, 100%, 50%);
}
body {
    
   background-color: hsl(217, 54%, 11%);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10rem 1.5rem;
}

.container {
    padding: 2rem 1.5rem;
    border-radius: 15px;
    background-color: hsl(215, 32%, 27%);
}

.image-contanier {
    width: 100%;
    position: relative;
    min-height: 20rem;
}

.icon-view {
    position: absolute;
    left: 0;
    right: 0;
    margin:  auto;
    bottom: 45%;
}

.image1:hover {
    background-color: hsl(178, 100%, 50%);
}

.image1 {
   display: block;
   max-width: 100%;
   border-radius: 10px;
   margin-bottom: 1rem;
}

.heading {
    font-size: 1.2rem;
    color: hsl(0, 0%, 100%);
    margin-bottom: 1rem;
}

.heading:hover {
    color: hsl(178, 100%, 50%);
    cursor: pointer;
}

.Outfit-600 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.paragraph {
    font-size: 16px;
    margin-bottom: 1rem;
    color: hsl(215, 51%, 70%);
    line-height: 1.5;
}

.Outfit-400 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.text {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1rem;
}

.icon-ethereum {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.ETH {
    color: hsl(178, 100%, 50%);
}

.icon-clock {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0.5rem;
}

.clock {
    color: hsl(215, 51%, 70%);
}

.paragraph1 {
    font-size: 18px;
}

.Outfit-300 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

hr {
    color: white;
    margin-bottom: 1rem;
    opacity: 0.1;
}


.image2 {
    width: 30px;
    border: 1px solid hsl(0, 0%, 100%);
    border-radius: 90%;
}

.image-avatar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    min-height: 2rem;
}

.text1 {
    color: hsl(215, 51%, 70%);
}

.text2 {
    color: hsl(0, 0%, 100%);
}

.text2:hover {
    color: hsl(178, 100%, 50%);
    cursor: pointer;
}


@media (min-width: 376px) {
  
    .container {
        max-width: 359px;
        margin: 0 auto;
    }

    main {
       padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }
}