*,
*::before,
*::after{ box-sizing:border-box; }

:root{
  --bg:#FFFFFF;
  --fg:#000000;
  --link:#006600;
  --link-visited:#004400;
  --link-active:#00AA00;
  --hover-bg:#EDFCED;
  --font:Arial,Helvetica,sans-serif;
}

html{
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:var(--font);
  font-size:16px;
  line-height:1.4;
}

.imgpage{
  min-height:100vh;
  padding:1rem 0 1.2rem;
}

.imgpage img{
  display:block;
  max-width:100%;
  height:auto;
  margin:0 auto;
}

.imgpage p{
  margin:0.9rem auto 0;
  padding:0 1rem;
  text-align:center;
  opacity:0.8;
}

.imgpage .back{
  margin-top:0.9rem;
  opacity:1;
}

a:link{ color:var(--link); text-decoration:underline; }
a:visited{ color:var(--link-visited); text-decoration:underline; }
a:hover{ color:var(--link); text-decoration:none; background-color:var(--hover-bg); }
a:active{ color:var(--link-active); text-decoration:none; }
a:focus{ color:var(--link); text-decoration:none; background-color:var(--hover-bg); }