* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  margin: auto;
}
body {
  background-color: darkred;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  background-size: cover;
  background-origin: padding-box;
  height: 120vh;
  margin-top: 0px; 
  
  
}


.titleBar {
  color: #ff9e40;
  font-size: 24px; 
  line-height: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 220px 0 150px;
  width: 100%;
  border: #fbab40;
  margin-top: -150px; 
  margin-bottom: 130px;

  	text-shadow: 1px 1px 1px #97692F,
        1px 2px 1px #97692F,
        1px 3px 1px #97692F,
        1px 4px 1px #97692F,
        1px 5px 1px #97692F,
        1px 6px 1px #97692F,
        1px 7px 1px #97692F,
    1px 18px 6px rgba(16,16,16,0.4),
    1px 22px 10px rgba(16,16,16,0.2),
    1px 25px 35px rgba(16,16,16,0.2),
    1px 30px 60px rgba(16,16,16,0.4); 

animation: fade-in-down 2s ease;
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.pageNodeContent {
  color: #EFE3E0;
  font-size: 18px; 
  line-height: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 220px 0 150px;
  width: 100%;
  height: 10vh; 
  margin-top: 0px;
  
}
.pageNodeContent a{

  text-decoration:none;
  color: white;

}

.Button1 > a > button {
  background: #f6821f;
  border-radius: 5px;
  border: none;
  width: 90px;
  margin-top: 30px;
  height: 50px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 14px;
  background: rgba(246, 130, 31, 1);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  margin-top: 70px;
  margin-left: 0px;
  box-shadow: 0px 4px 0px #7D4210, 0px 4px 8px #111111;
  transition: all 0.2 ease;
  margin-bottom: 50px;

}

@media(max-width:800px){
  .body{
    max-width: 240px;
  }
  .titleBar{
    margin-bottom: 220px;
  }
  .pageNodeContent{
    padding-left: 30px;
    padding-right: 20px;
    justify-content: center;
    align-items:center;
    
  }
}