html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}

.main-wrapper {
  width: 350px;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 50px;
  text-align: center;
  border-radius: 10px;
  color: black;
  border: 1px solid black;
}

.main-wrapper img {
  width: 100%;
}

.main-wrapper a {
  display: block;
  margin-bottom: 20px;
  color: #0056ff;
  text-decoration: none;
  transition: all .3s ease;
}
.main-wrapper a:hover {
  transition: all .3s ease;
  text-decoration: underline;
}

.main-wrapper p {
  margin-bottom: 20px;
}



@media only screen and (max-width: 768px) {
  .main-wrapper {
    width: 70%;
  }
}