* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

#notfound {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.notfound {
  margin-right: -230px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.nofound-img {
  width: 160%;
  height: auto;
  margin: 30px 0;
}

.notfound-404 {
  display: flex;
}

.notfound-404-link {
  color: #ed206f;
  text-decoration: none;
  font-size: 20px;
  margin: 4px;
  text-transform: lowercase;
  width: auto;
  padding: 3px 20px;
  border: 3px solid rgba(237, 32, 111, 0.3);
  border-radius: 50px;
  background: #fff;
  transition: all .4s ease;
}

.notfound-404-link:hover {
  color: #ffffff;
  background: #ED206F;
}

.nofound-text {
  color: #ed206f;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
}

.nofound-texts {
  text-transform: none;
  font-size: 20px;
  margin: 20px;
}

@media screen and (max-width:800px) {
  .notfound {
    margin-right: 0;
  }
  
  .nofound-img {
    width: 100%;
  }

  .notfound-404-link {
    font-size: 18px;
    padding: 2px 20px;
    
}

}