* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

#notfound {
  position: relative;
  height: 100vh;
}

/* removes banner when clicked */
.cookie-banner.cookie-fade {
    opacity: 0;
    animation-fill-mode: none
}

/* stops banner re-appearing */
.cookie-banner.hidden {
    display: none;
}

/* very basic styling of the banner plus the animation properties */
.cookie-banner {
    color: black;
    opacity: 0;
    z-index: 99;
    background: #d3d3d3;
    width: 25%;
    position: fixed;
    left: 10px;
    bottom: 10px;
    box-shadow: 0px 0px 10px #cccccc;
    padding: 5px 10px;
    animation: initial-hide 1s ease-out 0s forwards;
}

/* animation keyframes that animates the banner in onload */
@keyframes initial-hide {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.cookie-button {
    float: left;
}

.learn-more {
    a: link,a:visited

{
    color: Blue;
    text-decoration: none;
    target-new: none;
}

a:hover {
    color: Green;
    background-color: https://jemedia.xyz/policies/tracking;
    text-decoration: underline;
    target-new: window;
}

}

.learn-more {
    float: left;
    margin: 0px 10px;
}

@media (max-width : 1000px) {
    .cookie-banner {
        width: 95%;
    }
}/* removes banner when clicked */
.cookie-banner.cookie-fade {opacity: 0; animation-fill-mode: none}

/* stops banner re-appearing */
.cookie-banner.hidden {display: none;}

/* very basic styling of the banner plus the animation properties */
.cookie-banner {
	color: black;
    opacity: 0;
    z-index: 99;
	background: #d3d3d3;
    width: 25%;
    position: fixed;
    left: 10px;
    bottom: 10px;
    box-shadow: 0px 0px 10px #cccccc;
    padding: 5px 10px;
    animation: initial-hide 1s ease-out 0s forwards;   
}

/* animation keyframes that animates the banner in onload */
@keyframes initial-hide {
    0%   {opacity:0;}
    100% {opacity:1;}
}
.cookie-button {
  float: left;
}
.learn-more {
  a:link,a:visited {
   color: Blue;
   text-decoration: none;
   target-new: none;
  }
  a:hover {
   color: Green;
   background-color: white;
   text-decoration: underline;
   target-new: window;
  }
}
.learn-more {
  float: left;
  margin: 0px 10px;
}
@media (max-width : 1000px) {
  .cookie-banner {
    width: 95%;
  }
}#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: 560px;
  width: 100%;
  padding-left: 160px;
  line-height: 1.1;
}

.notfound .notfound-404 {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url('../img/emoji.svg');
  background-size: cover;
}

.notfound .notfound-404:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(2.4);
      -ms-transform: scale(2.4);
          transform: scale(2.4);
  border-radius: 50%;
  background-color: #f2f5f8;
  z-index: -1;
}

.notfound h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 65px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #151723;
  text-transform: uppercase;
}

.notfound h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 21px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  color: #151723;
}

.notfound p {
  font-family: 'Nunito', sans-serif;
  color: #999fa5;
  font-weight: 400;
}

.notfound a {
  font-family: 'Nunito', sans-serif;
  display: inline-block;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  color: #388dbc;
}

@media only screen and (max-width: 767px) {
  .notfound .notfound-404 {
    width: 110px;
    height: 110px;
  }
  .notfound {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 110px;
  }
}
