#home {
  border: solid black 1px;
  padding: 5px;
  background: darkslategray;
  color: white;
  text-decoration: none;
  box-shadow: black 3px 2px 5px;
  border-radius: 10%;
}
html {
  background: silver; /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(silver, darkslategray); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(silver, darkslategray); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(silver, darkslategray); /* For Firefox 3.6 to 15 */
  background: linear-gradient(silver, darkslategray); /* Standard syntax */
  height: 100%;
  width: 100%;
}
.Column {
	width: 98%;
	margin-left: 1%;
	margin-right: 1%;
	position: absolute;
	min-width: 700px;
}
.main {
	width: 50%;
    height: 300px;
	margin-left: 25%;
}
#title, #EE {
	width: 90%;
	margin-left: 5%;
	margin-top: 1%;
	text-align: center;
    background-color: oldlace;
}
#Examples {
	text-align: justify;
	width: 139px;
    height: 130px;
	padding-left: 3.5px;
    line-height: 0.7em;
    margin-left: 30px;
}
#Example {
    border: gray outset 3px;
    text-align: center;
    width: 160px;
    line-height: 0.7em;
    position: relative;
    top: -147px;
    left: 190px;
    background-color: mediumvioletred;
}
.line, .spacer {
  display: inline-block;
  width: 4.4%;
  height: 35px;
  border: 2px outset darkolivegreen;
  text-align: center;
  overflow: hidden;
  font-size: small;
  /*margin-left: 0.1%;*/
}
.line:hover {
  transform: scale(1.8);
  -webkit-transform: scale(1.8);
  -moz-transform: scale(1.8);
  -o-transform: scale(1.8);
  overflow: visible;
  height: auto;
  width: auto;
  padding: 2px;
}
.Place {
  border: none;
  margin-left: 4px;
}
.Group {
  font-weight: bold;
  font-size: x-small;
  text-align: center;
  height: auto;
  overflow: hidden;
  border: none;
  margin: 2px;
}
.diff {
    width: 100%;
    padding-left: 5%;
    margin-bottom: 5%;
}
.cat {
    width: 8%;
    display: inline-block;
    text-align: center;
    border: 2px outset darkolivegreen;
    font-size: small;

}
    .cat:hover {
        transform: scale(1.8);
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -o-transform: scale(1.8);
        padding: 2px;
    }
#AlkaliMetal, .Alkali {
  background-color: red;
 }
#AlkalineEarth, .AEarth {
  background-color: orangered;
}
#TransitionMetal, .Transition {
  background-color: yellow;
}
#BasicMetal, .Basic {
  background-color: green;
}
#Semimetal, .Semi {
  background-color: blue;
}
#Nonmetal, .NonM {
  background-color: indigo;
}
#Halogen, .Halo {
  background-color: violet;
}
#NobleGas, .Noble {
  background-color: navy;
}
#Lanthanide, .Lanthan {
  background-color: fuchsia;
}
#Actanide, .Act {
  background-color: royalblue;
}
#H1 {
    font-weight: 900;
}
h3 {
    font-size: medium;
    font-weight: 400;
}

@media only screen and (min-width: 768px) {
    .line, .spacer {
        height: 80px;
        font-size: medium;
    }

    .Group {
        font-size: medium;
        height: auto;
        overflow: visible;
    }

    .cat {
        font-size: medium;
    }

    h3 {
        font-size: x-large;
    }

    #Example {
        width: 30%;
        margin-left: 17%;
    }

    #Examples {
        width: 40%;
        margin-left: 12%;
        line-height: 1em;
    }
}