@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --Soft-Blue: hsl(215, 51%, 70%);
  --cyan: hsl(178, 100%, 50%);
  --very-dark-blue-bg: hsl(217, 54%, 11%);
  --Very-dark-blue-card: hsl(216, 50%, 16%);
  --Very-dark-blue-line: hsl(215, 32%, 27%);
  --White: hsl(0, 0%, 100%);
  --ff-Outfit: "Outfit", sans-serif;
}
html,
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
main {
  max-width: 350px;
  background-color: var(--Very-dark-blue-card);
  min-height: 350px;
  padding: 1.5rem;
  border-radius: 10px;
}
body {
  background-color: var(--very-dark-blue-bg);
}

.section-1 > img {
  width: 100%;
  height: 18rem;
  border: 10px;
  padding-bottom: 1rem;
}

.section-1 h3 {
  color: var(--White);
  padding-bottom: 1rem;
  font-family: var(--ff-Outfit);
  font-weight: 600;
}
.section-1 h3:hover {
  color: var(--cyan);
  cursor: pointer;
}

.section-1 p{
    font-family: var(--ff-Outfit);
    font-size: 18px;
    font-weight: 600;
    padding: 0.5rem;
    color: var(--Very-dark-blue-line);
}
.section-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  font-family: var(--ff-Outfit);
  font-weight: 400;
}
.section-2-div-1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
}
.section-2-div-2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--Soft-Blue);
}

.section-3 {
  padding: 1rem 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-3 img {
  width: 10%;
  border: 1px solid var(--White);
  border-radius: 100%;
}

.section-3 p {
  font-family: var(--ff-Outfit);
  font-size: 18px;
}
.section-3-text {
  color: var(--Soft-Blue);
}
.section-3-name{
color: var(--White);
}
.section-3-name:hover{
    color: var(--cyan);
    cursor: pointer;
}
