@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(Roboto.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
  font-variation-settings: "wdth" 100;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: #542f6b;
  background: linear-gradient(
    108deg,
    rgba(84, 47, 107, 1) 0%,
    rgba(38, 49, 94, 1) 38%,
    rgba(54, 17, 92, 1) 82%,
    rgba(16, 15, 97, 1) 100%
  );
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 250;
  color: #eee;
  text-align: center;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

main {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: left;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(184, 12, 184, 0.5);
  max-width: 40rem;
}

footer {
  height: 2rem;
  margin-top: 2rem;
  bottom: 0.5rem;
  color: lightslategrey;
  font-size: 0.8rem;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bulb {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: limegreen;
  border-radius: 100%;
  border: 1px solid darkgreen;
  margin-right: 0.1rem;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 350;
}

h2 {
  font-weight: 250;
}

h3 {
  font-weight: 400;
  margin-top: 0;
}

p {
  font-size: 1.2rem;
}

.photo {
  display: flex;
  flex-direction: column-reverse;

  img {
    flex: 1;
    object-fit: cover;
    border-radius: 100%;
  }

  @media screen and (min-width: 640px) {
    flex-direction: row;
    div {
      flex: 3;
    }
  }
}
