:root {
  --body: #353535;
  --primary: #9E37B0;
}

html {
  font-size: 62.5%;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  display: flex;
  background: #f8f8f8;
  justify-content: center;
  margin: 0;
}

body, a {
  color: var(--body);
}

h1 {
  font-size: 4rem;
  font-weight: 600;
}

h2 {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px 0;
}

h1,
h2 {
  margin: 15px 0;
}

p {
  line-height: 1.8;
}

a {
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  margin: 0 10px 0 0;
}

.primary {
  color: var(--primary);
}

.bold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: 0 -27px;
}

section.flex {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
  width: 320px;
}

@media (min-width: 900px) {
  section.flex {
    margin-top: 0;
    flex-direction: row;
    justify-content: center;
    width: 900px;
  }

  img {
    border-radius: 50%;
    width: 350px;
    object-fit: revert;
    object-position: revert;
    height: revert;
  }
}