@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --light-purple: hsl(260, 100%, 95%);
  --purple: hsl(264, 82%, 80%);
  --dark-purple: hsl(263, 55%, 52%);

  --white: hsl(0, 0%, 100%);
  --lighter-grey: hsl(214, 17%, 92%);
  --light-grey: hsl(0, 0%, 81%);
  --grey: hsl(224, 10%, 45%);
  --dark-grey: hsl(217, 19%, 35%);
  --dark-blue: hsl(219, 29%, 14%);
  --black: hsl(0, 0%, 7%);
}

body {
  background-color: var(--white);
  padding: 2rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-size: 13px;
}

.daniel {
  background-color: var(--dark-purple);
  color: var(--light-purple);
}

.contact {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact .avatar {
  border-radius: 50%;
  width: 2rem;
}

.daniel .contact .avatar,
.patrick .contact .avatar {
  border: 2px solid var(--purple);
}

.contact h3,
.contact h4 {
  font-weight: 500;
}

.contact h3 {
  font-weight: 600;
}

section h2 {
  font-weight: 600;
  line-height: 1.3;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 5px 5px 20px hsl(0, 0%, 7%, 0.2);
}

.jonathan {
  background-color: var(--dark-grey);
  color: var(--lighter-grey);
}

.container-one,
.container-two {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.jeanette,
.kira {
  background-color: var(--white);
  color: var(--dark-grey);
}

.left-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.patrick {
  background-color: var(--dark-blue);
  color: var(--light-grey);
}

.kira {
  margin-top: 2rem;
}

.quotation {
  display: none;
}

@media (min-width: 1300px) {
  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  main {
    display: flex;
    gap: 2rem;
  }

  .kira {
    margin: 0;
    height: 100%;
  }

  .right-container {
    width: 18rem;
  }

  .container-one,
  .container-two {
    flex-direction: row;
    width: 60rem;
  }

  .quotation {
    display: block;
    padding-left: 30rem;
    position: fixed;
  }
}
