@charset "utf-8";
html {
	height:100%;}
.bg {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

.content {
  background-color:rgba(255,255,255,.8);
  border-radius:.25em;
  box-shadow:0 0 .25em rgba(0,0,0,.25);
  box-sizing:border-box;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  top:50%;
  transform:translate(-50%, -50%);
}


body {
margin: 0;
font-family: sans-serif;
color:#252525;
font-size:16px;
background-color: lightgoldenrodyellow;
}

.container {
margin: 0 auto;
max-width: 900px;
}

header {
background-color:#000;
}

main {
padding: 20px;
background-color:black;
}
footer {
padding: 10px;
background-color: gold;
text-align: center;
text-decoration-color: white;
}

h1{
font-family:monospace;
color:snow;
text-align: center;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

h2 {
padding: 15px;
border-bottom: 4px dotted #00a3af;
color:whitesmoke;
text-align: center;
}

img{
max-width:100%;
height:auto;
}

.naka{
text-align: center;
}

.box{
padding: 20px;
margin: 20px;
border:2px solid #00a3af;
border-radius: 15px;
display: flex;
flex-wrap:wrap;
justify-content: space-around;
	align-content: center;
}

.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
p{color:red;}