* {
  box-sizing: border-box;
}


      
    .hidd {
    display: none;
    }

span.year {
    font-weight:bold;
    font-size:140%;
    }

body {
padding: 0 5px 5px 5px;
  /* padding: 120px 0 0 0;
  */
  font-family: Arial, sans-serif;
  word-break: break-word;
}

.Component {
  font-size: 35px;
  padding: 1em;
  max-width: 30em;
  border: solid 2px #ccc;
  margin: 0 auto;
  /* type should be lighter */
  color: #fff; /* #666; */
  border-radius: 1em 0 1em 1em;
  position: relative;
  overflow: hidden;
  /* background should be darker */
  background: #666; /* black? */
}

  .Component:after {
    content: '';
    display: block;
    border-radius: 50% 0 50% 50%;
    width: 2em;
    height: 2em;
    position: absolute;
    top: .2em;
    right: .2em;
    background: #bbb;
  }

  .Component h2 {
    font-size: 2em;
    margin: 0 0 .4em;
  }

  .Component img {
    max-width: 100%;
    height: auto;
    border: solid .3em #ccc;
    float: left;
    margin: 0 1em 1em 0;
  }

  .Component p {
    font-size: 1em;
    margin: 1em 0 0 0;
    text-align: left;
  }

input[type="range"] {
  margin: 20px auto;
  display: block;
}

.admin {
  position: fixed;
  background: #eee;
  top: 0;
  left: 0;
  right: 0;
}

p {
  text-align: center;
}
/* swanson changed as colors were almost invisible against background */
A:link {
	color: #6f6; /* #000;  blue; */
	/* background-color: #fff; */
	text-decoration: underline;
}
A:visited {
	color: yellow; /* purple; */
	/* background-color: #fff; */
}
A:active {
	color: red;
	/* background-color: #fff; */
	text-decoration: underline;
}

A:hover {
	color: red; /* #fff; */
	background-color: #666;
}

@media screen and (max-width: 700px) {
  
  .Component {
    font-size: 14px; 
  }

}

@media screen and (max-width: 400px) {
  
  .Component {
    font-size: 10px;
    width: auto;
  }

  
}

