body {

    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background-color: #1E1E24;
    margin: 0;
}
.container {

    background: url('assets/background.png') no-repeat fixed center;
    background-size: cover;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;   
}

.logo { 
    z-index: 2;
	display: flex;
	justify-content: center;
    transform: scale(0.9);  
    
    
}
.backdrop {
    position:relative;
    left:-610px;
    
    top:-550px;
    display: flex;
	
    transform: scale(0.7);
    opacity: 0.5;
    z-index:-1;
}

.nav {
z-index: 1;
}

.nav a {
	float: center;
	color: #f2f2f2; /* White/gray colour for the visted navbar links */
	text-align: center;
	text-decoration: none;
	font-size: 28px; 
	padding: 10px; 	
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    animation: glow 1s ease-in-out infinite alternate;
}  
.nav a.active { 
	border-bottom: 6px solid white; /* adds a border just to the bottom, I use this instead of underlining because I think it looks better than the default underline */
  animation: glow 1s ease-in-out infinite alternate;  
    
}




small {
    font-size: 14px;
}
p {
    padding: 10px;
}

#wrapper {
    margin: 0 auto;
    margin-top: 100px;
    width: 1300px;
    
}

#content {
    float: center;
    
    background: rgba(red, green, blue, 0.2);
    width: 850px;
    color: white;
    font-size: 16px;
    
}

#leftcolumn {
    color: white;
    background: rgba(red, green, blue, 0.2);
    width: 450px;
    float: left;
    font-size: 30px;
}
.text-glow {
    
	color: white;
	font-size: 30px;
	text-align: center;
	animation: glow 1s ease-in-out infinite alternate;
}
form {
font-size: 16px;
}
h3 {
  font-size: 22px;
 } 
a, p {
  font-size: 16px;
}

textarea, input, button {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/*
@keyframes fadein {
	from { opacity: 0}
	to   { opacity: 1}
}
@keyframes glow {
    from{
      text-shadow: 0 0 10px #f00, 0 0 20px #f00, 0 0 30px #f00, 0 0 40px #f00,0 0 50px #f00;
    }
    to {
      text-shadow: 0 0 60px #f00, 0 0 70px #f00;
    }
  
  }
/*
  #pot {
    bottom: 93%;
    right: 200px;
    position: absolute;
    -webkit-animation: linear infinite;
    -webkit-animation-name: run;
    -webkit-animation-duration: 15s;
  }
  @-webkit-keyframes run {
    0% {
      left: 0;
    }
    50% {
    
      left: 100%;
    }
    100% {
      left: 0;    
      transform: scaleX(-1);
    }
  }*/