* {
  margin: 0;
  padding: 0;
  border: 0;
}

@font-face {
  font-family: "Paytone";
  src: url(./src/fonts/Paytone-One-Regular-400.ttf);
}

.container {
  display: flex;
  flex-direction: row;
  width: 90vw;
  height: 93vh;
  flex-wrap: wrap;
  margin: auto;
  /* gap: 17px; */
  justify-content: center;
}
.container .c {
  position: relative;
  border: none;
  background: rgb(2, 46, 120);
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin: 1.6vw;
  width: 46%;
  /* padding: 2px; */
  display: flex;
  /* height: 158px; */
  text-transform: uppercase;
  font-size: 4vw;
  align-items: center;
  justify-content: center;
  color: #ebeef0;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

.container .c:after {
  content: "";
  background: #ebeef0;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px !important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s;
}

.container .c:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s;
}

body {
  background: #ebeef0;
  display: flex;
  height: 100vh;
  font-family: "Paytone";
}
.last {
  width: 94% !important;
}

.params {
  position: absolute;
  bottom: 2vw;
  right: 2vw;
}