/* Your Awesome Styling */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Gradient taken and edited from CSS Gradient */
body{
  background-color: #95caec;
  background-image: linear-gradient(225deg, #95caec 0%, #E0C3FC 33%, #ffc1b2 66%, #fff7fc 100%);
  
/*   Additional styling  */
   height: 100%;
   margin: 0;
   background-repeat: no-repeat;
   background-attachment: fixed;
}

/* Text styling */

h1{
  font-family: "Poppins", sans-serif;
  font-style: bold;
  font-weight: 700;
  font-size: 100px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
}

.h2{
  font-family: "Poppins", sans-serif;
  font-style: semibold;
  fonnt-weight: 600;
  font-size: 80px;
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  top: 10px;
  
}

p{
  font-family: "Poppins", sans-serif;
  font-style: regular;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
}

.p{
  font-family: "Poppins", sans-serif;
  font-style: regular;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
  position: absolute; 
  bottom: 20px; 
}

/* Button */

.button{

/*  Object properties */
  width: 120px;
  height: 192px;
  
/*  Object Alignment  */
  display: flex;
  justify-content: center;
  align-items: center;
  postion: relative;
  
/*  Object background  */
  background: linear-gradient(333.2deg, #FFF7FC -93.13%, rgba(255, 247, 252, 0) 143.45%);
  backdrop-filter: blur(50px);

/*  Border Properties */
  border-radius: 20px;
  border: 3px solid;
  border-image-source: linear-gradient(150.97deg, rgba(255, 255, 255, 0.2) -18.93%, rgba(255, 255, 255, 0) 149.26%, rgba(0, 0, 0, 0) 149.28%);
  
/* Cursor Properties  */
  cursor: pointer;
}

/* Hover glow edited from Stockin at https://codepen.io/Stockin/pen/XPvpoB */

.button:hover{
   color: #ffffff;
  box-shadow: 0 0 20px #ffffff;
  text-shadow: 0 0 px #ffffff;
  filter: lighten;
  transition-timing-function: ease-in-out;
   transition-duration: 0.5s;
  transform: scale(1.05);
}
.keys{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between; 
  margin-left: 60px;
  margin-right: 60px;
  gap: 20px 20px;
}
