@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&display=swap");

* {
  font-family: "Mochiy Pop P One", sans-serif;
  cursor: default;
}

body {
  background-image: url(smoke_gif.gif);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
}

.heading_and_des {
  color: white;
  margin-top: 8%;
}

h1 {
  font-size: 60px;
  transition: 0.3s;
}

h1:hover {
  transform: scale(1.1);
}

.des {
  font-size: 20px;
  transition: 0.3s;
}

.des:hover {
  transform: scale(1.1);
}

.all {
  margin-left: 100px;
  margin-right: 100px;
}

.btn {
  border-radius: 4px;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-size: 300%;
  transition: all 0.6s;
  margin: 10px;
  cursor: pointer;
  height: 100px;
  border: solid 5px white;
}

.orange {
  color: white;
  background-image: linear-gradient(120deg, orange 50%, white 50%);
}

.orange:hover {
  color: orange;
  border: solid 5px orange;
}

.red {
  color: white;
  background-image: linear-gradient(120deg, #27979b 50%, white 50%);
}
.red:hover {
  color: #27979b;
  border: solid 5px #27979b;
}

.pink {
  color: white;
  background-image: linear-gradient(120deg, rgb(255, 104, 129) 50%, white 50%);
}
.pink:hover {
  color: rgb(255, 104, 129);
  border: solid 5px rgb(255, 104, 129);
}

.blue {
  color: white;
  background-image: linear-gradient(120deg, #257095 50%, white 50%);
}
.blue:hover {
  color: #257095;
  border: solid 5px #257095;
}

.btn:hover {
  background-position: 100%;
  transform: translateX(0.5rem);
}

.btn:active {
  transform: translate(0.5rem, 0.5rem);
  box-shadow: 0px 10px 20px -15px rgba(0, 0, 0, 0.75);
}

.all_buttons {
  display: flex;
}

.links {
  margin-top: 50px;
  margin-left: 1%;
}

a {
  width: 252px;
}

@media screen and (max-width: 991px) {
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label {
    right: 55px;
  }
}
