body{
  background-image: linear-gradient(to top, #df89b5 0%, #bfd9fe 100%);
}

.main
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:30px 0px;
}

.blog
{
    height: 700px;
    width: 50%;
    background-color: #eaeaea;
    border: 1px solid black;
    border-radius: 5px;
    box-shadow: 5px 7px #999898;
    padding: 10px;
}

@media only screen and (max-width: 1400px) {
  .blog{
    width: 80%;
  }
}

@media only screen and (max-width: 570px) {
  .blog{
    height: 1000px ;
  }
}

.tools
{
    height: 40%;
}

@media only screen and (max-width: 570px) {
  .tools {
    height: 45%;
  }
}


@media only screen and (max-width: 960px) {
    .tools > div {
      font-size: 25px;
  }
}

@media only screen and (max-width: 855px) {
  .tools > div {
    font-size: 20px;
}
}

@media only screen and (max-width: 753px) {
  .tools > div {
    font-size: 18px;
}
}

.item
{
    margin:5px;
    padding: 15px;
    font-size: 30px;
    border-radius: 80px;
    z-index: 999;
}

#imgdiv
{
    height: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#imgtools
{
  height: 29vh;
  padding-top: 20px;
  z-index: 99;
}

@media only screen and (max-width: 753px) {
  #imgtools{
    height: 25vh;
  }
}


#div-with-pattern {
    height: 50%;
    width: 100%;
    background-image: linear-gradient(to bottom, #AAA 1px, transparent 1px), linear-gradient(to right, #AAA 1px, transparent 1px), radial-gradient(1px 1px at center, #AAA .5px, transparent 1px), radial-gradient(1px 1px at center, #AAA .5px, transparent 1px);
    background-size: 40px 0px, 0px 40px, 6px 60px, 6px 60px;
    background-position: 0px 0px, 0px 0px, 0px -10px, 0px 10px;
}

.hovered
{
  background-color: rgb(190, 190, 190);
}


.checkmark {
  width: 200px;
  margin: 0 auto;
  padding-top: 40px;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash 2s ease-in-out;
  -webkit-animation: dash 2s ease-in-out;
}

.spin {
  animation: spin 2s;
  -webkit-animation: spin 2s;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
}

p {
  font-family: sans-serif;
  color: rgb(34, 80, 185);
  font-size: 30px;
  font-weight: bold;
  margin: 20px auto;
  text-align: center;
  animation: text .5s linear .4s;
  -webkit-animation: text .4s linear .3s;
}

#error
{
  color: #b84b56;
}


@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes text {
  0% {
    opacity: 0; }
  100% {
    opacity: 1;
  }
}

#successMessage {
  position: absolute;
  left: 580px;
  top: 250px;
  width: 0;
  height: 0;
  z-index: 100;
  background: #dfd;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: .3em .3em .5em rgba(0, 0, 0, .8);
  -webkit-box-shadow: .3em .3em .5em rgba(0, 0, 0, .8);
  box-shadow: .3em .3em .5em rgba(0, 0, 0, .8);
  padding: 20px;
}

@media only screen and (max-width: 480px) {
  #successMessage {
    width: 200px !important;
    left: 22% !important;
    top:70% !important;
    }
  }

#divMessage {
    margin: 80px 70px;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
  }