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

html,
body {
  font-family: Raleway;
  font-size: 20px;
  font-weight: bold;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(25deg, #16054a, #c8a6b4);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
}
.container {
  width: 100%;
  height: 100%;
  position: absolute;
}
#blurCanvasTop {
  left: 0%;
  top: 0%;
  position: absolute;
}
#blurCanvasBottom {
  left: 50%;
  top: 0;
  position: absolute;
}

.blur {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.blurTop {
  left: 40%;
  top: -110%;
  transform: rotate(20deg);
  transform-origin: 0 100%;
}
.blurBottom {
  left: -60%;
  top: 100%;
  transform: rotate(20deg);
  transform-origin: 100% 0%;
}

/* Buttons code */

.container1 {
  position: absolute;
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
}

.container2 {
  position: absolute;
  margin-top: 200px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
}

.container3 {
  position: absolute;
  margin-top: 350px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
}

.icons {
  width: 80px;
  height: 80px;
}

.btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgb(165, 243, 149);
  background-color: rgb(165, 243, 149);
  width: 135px;
  height: 135px;
  border-radius: 15px;
}

.btn:hover {
  position: relative;
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: translateY(-10px);
  transition: transform 500ms ease-in-out;
}

.btn:active {
  opacity: 0.8;
}
