@font-face {
  font-family: allzin-font;
  src: url('../../static/css/font/NomineeMedium.otf')
}

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

html, body {
  width:100%;
  height:100%;
  padding:0;
  margin:0;
  margin-left:0;
  margin-right:0;
  font-family: allzin-font;
}

a,
a:hover,
a:active,
a:focus
{
  outline:none;
  cursor: pointer;
  text-decoration:none;
  color: black;
}

img {
  vertical-align: middle;
}

#notfound {
  position: relative;
  height: calc(100vh - 150px);
  margin: 20px;
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound {
  max-width: 410px;
  width: 100%;
  text-align: center;
}

.notfound .notfound-404 {
  height: 280px;
  position: relative;
  z-index: -1;
}

.notfound .notfound-404 h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 200px;
  margin: 0px;
  font-weight: bolder;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url('https://res.cloudinary.com/allzin/image/upload/f_auto/v1665127497/website/404-bg.jpg') no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  background-position: center;
}


.notfound h2 {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 0;
}

.notfound p {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 0px;
}

.notfound a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background: #0046d5;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: bold;
  -webkit-box-shadow: 0px 4px 15px -5px #0046d5;
  box-shadow: 0px 4px 15px -5px #0046d5;
  -moz-box-shadow: 0px 4px 15px -5px #0046d5;
}

#header-404 {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #D7D5D5;
  padding: 20px 80px;
  height: 91px;
  position: fixed;
  top: 0;
  background-color: white;
  left: 0;
  right: 0;
  z-index: 3;
}

.section-header{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.header-logo {
  align-items: center;
  display: flex;
}

.header-logo span {
  font-weight: bold;
  font-size: 14px;
}

#header-gap{
  width: 100%;
  height: 91px;
}

@media only screen and (max-width: 1024px){

  #header-404 {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
      height: 142px;
    }
    .notfound .notfound-404 h1 {
      font-size: 96px;
    }
}

@media only screen and (max-width: 640px){
  #header-404 {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 480px){
  #header-404 {
    padding: 16px;
    height: 71px;
  }
  #header-gap{
    height: 71px;
  }

  .header-logo .allzin-logo img {
    width: 80px;
    height: auto;
  }

  #notfound {
     height: calc(100vh - 130px);
   }
}
