@import url("https://fonts.googleapis.com/css2?family=Jersey+25&display=swap");

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

body {
  background-color: #ffffff;
  height: 100vh;
  padding: 0.5rem;
  font-family: "Jersey 25", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.main_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: #000000;
  border-radius: 10px;
  overflow: hidden;
  transition: background-color 1.2s ease-in-out;
}

.btn_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.click_me_btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 36px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #ff5252;
  border: 2px solid #000;
  border-radius: 10px;
  font-family: "Jersey 25", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-shadow: 5px 5px 0px #000;
  transition: all 0.3s ease;
  cursor: pointer;
}

.click_me_btn:hover {
  background-color: #fff;
  color: #ff5252;
  border: 2px solid #ff5252;
  box-shadow: 5px 5px 0px #ff5252;
}

.click_me_btn:active {
  background-color: #fcf414;
  box-shadow: none;
  transform: translateY(4px);
}

.color_code {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: fit-content;
  font-size: 28px;
  color: #ffffff;
  z-index: 100;
  cursor: default;
  user-select: none;
}
