/*Fonts and colors for Pilates Playground*/
* {
    margin: 0;
    padding: 0;
}
h1 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: 120px;
    font-style: normal;
}
h2 {
    font-family: 'Grechen Fuemen', cursive;
    font-size: 60px;
}
h6 {
    
}
body {
      font-family: "Scope One", serif;
      font-weight: 200;
      font-size: 21px;
}

.tagline {
    font-family: 'Source Serif 4', serif;
    font-size: 18px;
    font-weight: 600;
}

.content-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.headshot {
  width: 200px;
  height: auto;
}

.button {
  background-color: black;
  color: white;
  padding: 12px 80px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-block;
  clip-path: ellipse(50% 45% at 50% 50%);
}

.button:hover {
  background-color: #333;
}