 
/* Clean start */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}	  

/* general styling
:root {
  background-color: #010a01;
}
*/
 
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

h1, h2 {
  text-align: center;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}  

h1 {
  font-size: 400%;
}

h2 { 
  font-size: 120%;
  color: greenyellow;
}

section {
  position: relative;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-img {
  background-image: url("../img/wall.png")
}

.section-inner {
  position: relative;
  top: 100px;
}

.neonText {
  color: #fff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 40px #5271ff,
    0 0 80px #5271ff,
    0 0 90px #5271ff,
    0 0 100px #5271ff,
    0 0 150px#5271ff;
}

footer {
  position: relative;
  /*padding: 10px 0;*/
}

.ip-address {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  background-color: #663399;
}

.ip-address a {
  text-decoration: none;
  color: #fff;
}

/* Old stuff */

/* html, body {
    height: 100%;
    margin: 0;
} */

/*
h1, h2 {
  text-align: center;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  font-family: "Monserrat", sans-serif;
}
    
h1 {
  font-size: 400%;
  animation: pulsate 0.11s ease-in-out infinite alternate;
}

h2 {
  color: greenyellow;
  font-size: 120%;
}
*/

/*
.container {
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
}  
*/

/* 
.bodyB {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  background-color: #010a01;
  background-image: url("https://cdn.pixabay.com/photo/2017/02/12/12/42/wall-2059909_640.png")
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "arial", sans-serif;
  font-size: 1rem;  
}

.bodyba {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #010a00;
  background-image: url("https://cdn.pixabay.com/photo/2017/02/12/12/42/wall-2059909_640.png");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: -apple-system, 
    BlinkMacSystemFont, 
    "Segoe UI", 
    Roboto, 
    Oxygen-Sans, 
    Ubuntu, 
    Cantarell, 
    "Helvetica Neue", 
    sans-serif;
  font-size: 1rem;
} 
*/
