* {
  box-sizing: border-box;
  margin: 0 auto;
}

body, html {
  background-color: #FABCE8;
  min-height: 100vh;
  height: 100%;
}

#container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Rubik', sans-serif;
  font-size: 8px;
  color: #F3391D;
  /* background: blue; */
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  font-size: 2em;
  font-weight: 400;
}

#textContainer {
  position: relative;
  font-size: 15rem;
  font-weight: 700;
  text-align: left;
  font-size: 15em;
  /* background: yellow; */
}

.overlayContainer {
  position: absolute;
  width: 100%;;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  pointer-events:none;
}

.circleContainer {
  position: relative;
  display: flex;
  align-items: center;
  width: 25%;
}

.circle {
  position: absolute;
  width: 200%;
  height: auto;
  padding-top: 200%;
  border-radius: 50%;
  background: #F3391D;
  margin-left: -50%;
  pointer-events: all;
  cursor: pointer;
}

.firstLine {
  /* position: absolute; */
  font-weight: 700;
  margin-bottom: -25px;
  width: 100%;
  cursor: pointer;
}

.firstLine:hover {
  color: #FFFFFF;
}

.secondLine {
  /* position: absolute; */
  font-weight: 700;
  width: 100%;
  cursor: pointer;
}

.secondLine:hover {
  color: #FFFFFF;
}

.thirdLine {
  font-weight: 400;
  font-size: 2rem;
  cursor: pointer;
}

.thirdLine:hover {
  color: #FFFFFF;
}
