body {
  height: 100vh;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}
.box {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text{
  background-image: linear-gradient(90deg,#fcc15b,#f78a4a );
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

.content{
  display: flex;
  flex-direction: row;
}

.icon {
  height: 50%;
  width: 50%;
  position: relative;
  align-self: center;
  fill: yellow;
}

.floating-button {
  position: absolute;
  display: flex;
  bottom: 10px;
  right: 10px;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  background-color: #3c3c3c;
  justify-content: center;
}

.floating-button:hover {
  filter: brightness(130%);
}
