:root {
  --color-soft-blue: hsl(215, 51%, 70%);
  --color-cyan: hsl(178, 100%, 50%);
  --color-very-dark-blue-main-bg: hsl(217, 54%, 11%);
  --color-very-dark-blue-card-bg: hsl(216, 50%, 16%);
  --color-very-dark-blue-line: hsl(215, 32%, 27%);
  --color-white: hsl(0, 0%, 100%);
}

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

html,
body {
  min-height: 100%;
  background-color: var(--color-white);
}

body {
  display: flex;
  place-content: center;
  /* justify-content: center;
  align-items: center; */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: 'Outfit', sans-serif;
}
/* - Weights: 300, 400, 600 */

p {
  color: var(--color-soft-blue);
  font-size: 1.125rem;
}

img {
  height: auto;
  max-width: 100%;
}

h1 {
  color: var(--color-white);
}

.solid {
  border-top: 3px solid --color-very-dark-blue-line;
}

/* main {
  /* height: 100vh; */

/* Whole Card Container */

article {
  max-width: 22rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--color-very-dark-blue-card-bg);
}

/* Upper part of the card */

.equilibrium-picture {
  border-radius: 30px;
}

.active-state {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--color-white);
}

a:hover {
  text-decoration: none;
  color: var(--color-cyan);
}

/* Middle Part of the Card */

.middle-part-card {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  padding: 1rem;
}

.highlight-color {
  font-weight: bold;
  color: var(--color-cyan);
}

.card-eth {
  display: flex;
  align-items: center;
}

.ethereum-icon {
  margin-right: 0.125rem;
}

/* End Part of the Card */

.divider-card {
  border: solid;
  height: 20px;
  background: white;
}

.end-part-card {
  display: flex;
  /* justify-content: start; */
}

.avatar {
  height: 4rem;
  border: 1px solid white;
  border-radius: 50%;
  margin-right: 1.5rem;
}

.highlight-name {
  color: var(--color-white);
}

/* Style Frontend Mentor */

.attribution {
  font-size: 11px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

footer {
  position: absolute;
  text-align: center;
  bottom: 0;
  width: 100%;
  /* height: 50px; */
}
