@import url("https://fonts.googleapis.com/css2?family=Inconsolata&display=swap");

* {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}

body {
  background: url("back.jpg") no-repeat center center;
  background-size: cover;
  display: grid;
  font-family: 'Noto Sans', sans-serif;
  min-height: 100vh;
  place-items: center;
}

.holder:before {
  animation: orbit 10s linear infinite;
  border-radius: 50%;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  content: "";
  height: 300px;
  position: absolute;
  width: 300px;
}

.holder:before {
  background: #ffe897;
  background: -moz-radial-gradient(top right, #ffe897, #f98a05);
  background: radial-gradient(to bottom left, #ffe897, #f98a05);
  background: -webkit-radial-gradient(top right, #ffe897, #f98a05);
}

.holder:after {
  animation-delay: 2.5s;
  background: #e0e793;
  background: -moz-radial-gradient(bottom right, #e0e793, #6dd0f1);
  background: radial-gradient(to top left, #e0e793, #6dd0f1);
  background: -webkit-radial-gradient(bottom right, #e0e793, #6dd0f1);
  bottom: 100px;
  right: 600px;
  z-index: -1;
}

.card {
  border: 1px solid #fff;
  border-radius: 15px;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  height: 600px;
  overflow: hidden;
  position: relative;
  width: 900px;
}

.card:before {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px) saturate(100%) contrast(45%) brightness(115%);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}

.card svg {
  bottom: 30px;
  position: absolute;
  right: 30px;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(200px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(200px) rotate(-360deg);
  }
}
H1 {
  color: #ffff;
  z-index: 2;
  position: relative;
  text-align: center;
}
.wrapper {
  display: flex;
  width: 100%;
  height: 90%;
  justify-content: space-around;
  align-items: center;
  color: #ffff;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.item > img {
  width: 100px;
  height: auto;
  filter: invert(1);
  margin-bottom: 20px;
}

a {
  flex: 1 0 21%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.7s;
}

.item {
  text-align: center;
  transition: transform 0.7s;
}

.item:hover {
  transform: scale(1.1);
  transition: transform 0.4s;
}
