.div-block {
  width: 500px;
  height: 60px;
background-color: #ffffff;
    border: 3px solid #051acd;
  border-radius: 50px;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1%;
  padding-right: 1%;
  transition: all .4s;
  display: flex;
  transform: translate(8px, 8px);
}

.div-block:hover {
  transform: translate(0);
  box-shadow: 6px 6px rgb(5 26 205);
}

.link-block {
  width: 500px;
  height: 50px;
  background-color: red;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  transition: all .2s;
  display: block;
  box-shadow: 4px 4px 2px rgb(5 26 205);
}

.link-block:hover {
  box-shadow: 8px 8px 2px rgb(5 26 205);
}

.image {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-2 {
  width: auto;
  height: 60%;
}

.paragraph {
  color: #1a8706;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.link-block-2 {
  width: 100%;
  height: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  pointer-events: auto;
  overflow-wrap: normal;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.body {
  background-color: #ecdf2e;
}

@media screen and (max-width: 479px) {
  .div-block {
    width: 90%;
    padding-left: 2%;
    padding-right: 2%;
    transform: translate(0);
  }
}
