html,body{
 height:100%;
}
*,*::before,*::after{
  box-sizing: border-box;
}
body{
  background-color:black;
  margin: 0;
  font-size:16px;
  font-family:Arial,sans-serif;
  color:lightblue;
}
a, a:visited {
  color: lightblue;
}
input {
  margin: 4px 0;
  font-size: 16px;
  font-family: Arial,sans-serif;
}
input:invalid {
  border: 2px solid red;
  border-radius: 4px;
}
.long90{
  width: 90%;
}
#outer{
 width:100%;
 max-width:800px;
 padding:12px;
 margin-left:auto;
 margin-right:auto;
 margin-bottom:10px;
 background:#c3dde6;
 background: linear-gradient(90deg,#000f14, #173238f2);
 border:none;
}
#header{
  position: relative;
  height: 100px;
}
#user{
  position: absolute;
  right: 0;
  width: 200px;
  padding: 8px 8px 12px 8px;
  border-radius: 8px;
  background: #00000040;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #user{
    top: 80px;
  }
  #header{
    height: 140px;
  }
}
#container{
  min-height: 400px;
}
#map{
  height:300px;
  border-radius:8px;
}
#footer{
  border-radius: 8px;
  background: #00000040;
  padding: 12px 6px;
  margin-top: 8px;
}
#slogan{
  float: right;
  text-align: center;
}
.pitufino_list{
  border-radius: 8px;
  background: #00000040;
  padding: 12px 6px;
  margin-bottom: 8px;
}
.appicon a {
  display: inline-block;
  vertical-align: bottom;
  width: 86px;
  height: 104px;
  text-align: center;
  margin-top: 6px;
  padding-top: 2px;
  padding-bottom: 0;
  border-radius: 8px;
  text-decoration: none;
}
.appicon img{
  width: 75%;
  max-width: 60px;
  max-height: 60px;
  aspect-ratio: 1;
}
.centerbox{
  display: none;
  position: fixed;
  width: 300px;
  padding: 8px;
  background: black;
  border-radius: 8px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hl{
  color:lightgreen;
}
