body {
  width: 100vw;
}
/* Default configuation for cell phone*/
header h1 {
  color: antiquewhite;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  text-shadow: 3px 3px 3px blue;
  background-color: #222;
  line-height: 50px;
  text-align: center;
}
.menu{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  /* background: linear-gradient( to right,blue, indianred,indigo); */
  background-image: url('../images/bg.jpg');
}
div a {
  color: goldenrod;
  background-color: #444;
  opacity: 0.9;
  width: 100px;
  height: 100px;
  margin: 10px 10px 10px;
  padding: 10px 10px 10px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  text-shadow: 1px 1px 1px orange;
  font-weight: bolder;
  line-height: 50px;
  border: 5px solid #000;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 6px 6px 5px #111;
}
div a:hover{
  box-shadow: none;
  text-shadow: none;
}
#cc, #pt, #ca1, #ca2, #bo, #pm, #as{
  display: none;
}
/* configuration for everything else */
@media only screen and (min-width: 1000px) {
  header h1 {
    font-size: 70px;
    line-height: 100px;
  }
  div a {
    width: 200px;
    height: 200px;
    font-size: 35px;
    color: goldenrod;
    line-height: 100px;
  }
  #cc, #pt, #ca1, #ca2, #bo, #pm, #as{
    display: inline;
  }
}
