body {
  height: 100vh;
  font-family: "Bebas Neue";
}

* {
  box-sizing: border-box;
}

section {
  height: 100vh;
  padding: 3em;
}
section h1 {
  font-size: 2rem;
}

.overlay {
  background: #0e1111;
  color: #E1D9D1;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  clip-path: circle(100px at var(--x, 100%) var(--y, 50%));
  transition: clip-path 100ms;
}

.overlay2 {
  background: #E1D9D1;
  color: #0e1111;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  clip-path: circle(100px at var(--x, 0%) var(--y, 50%));
  transition: clip-path 100ms;
}

.hover-btn2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #E1D9D1;
  display: flex;
  cursor: pointer;
}

svg {
  margin: 1em;
  fill: #E1D9D1;
}

.is-open {
  clip-path: circle(200% at 100% 100%);
  transition: clip-path 1.75s;
  transition-timing-function: cubic-bezier(1, -0.01, 0.01, 0.99);
}

.is-open2 {
  clip-path: circle(200% at 100% 100%);
  transition: clip-path 1.75s;
  transition-timing-function: cubic-bezier(1, -0.01, 0.01, 0.99);
}

.button {
  position: absolute;
  border-radius: 15px;
  width: 300px;
  height: 60px;
  margin-left: 25%;
  margin-top: -25px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  background-color: #0e1111;
  font-family: "Playfair Display", serif;
  color: #E1D9D1; /* add event listener to transition text from dark to light on hover...this is getting quite extensive..... */
  border: solid 1px rgba(225, 217, 209, 0.3);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.button .button-text {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  padding-bottom: 40px;
}
.button .fill-container {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  padding-bottom: 100%;
  transform: translateY(-50%) rotate(180deg);
}
.button .fill-container::after {
  content: ""; /* most of this stuff is unecessary since i decided to change some functionalities*/
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(225, 225, 217, 0.8196078431);
  border-radius: 50%;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(-100%);
}
.button:hover {
  border-color: #0e1111;
  transform: translateY(-4px);
}
.button:hover::after {
  transform: translateY(0);
}/*# sourceMappingURL=main.css.map */