@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

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

body {
    background-color: hsl(217, 54%, 11%);
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
}

div#background-card-1 {
    background-color: hsla(215, 55%, 6%, 0.123);
    border-radius: 20px;
    height: 600px;
}

div#container {
    background-color: hsl(216, 50%, 16%);
    width: 375px;
    height: 550px;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
}

header {
    height: 55%;
    width: 100%;
    position: relative;
}

header > img {
    width: 100%;
    height: 100%;
    background: cover no-repeat center center;
    object-fit: cove;
    box-shadow: 0px 1px 10px hsla(216, 54%, 11%, 0.37);
    border-radius: 5px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(178, 100%, 50%, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay:hover {
    opacity: 1;
    cursor: pointer;
}

main {
    text-align: left;
}

main > h1 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 600;
}

main > h1:hover {
    color: hsl(178, 100%, 50%);
    cursor: pointer;
}

main > p {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 15px;
    color: hsl(215, 51%, 70%);
    font-weight: 300;
}

section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
    margin-top: 20px;
}

section > div > img {
    transform: translateY(3px);
    margin-right: 5px;
}

section > div.ethereum {
    color: hsl(178, 100%, 50%);
}

section > div.relogio {
    color: hsl(215, 51%, 70%);
}

section > div.ethereum > span {
    letter-spacing: 1px;
}

div#linha-horizontal {
    width: 100%;
    border-bottom: 1px solid hsl(215, 32%, 27%);
    margin-top: 20px;
    margin-bottom: 10px;
}

footer {
    color: hsl(215, 51%, 70%);
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


footer > img {
    height: 30px;
    border-radius: 50%;
    border: 1px solid white;
    margin-right: 10px;
}

footer > p > a {
    text-decoration: none;
    color: white;
    font-weight: 400;
}

footer > p > a:hover {
    color: hsl(178, 100%, 50%);
}