div.content {
	max-width: 1250px;
	min-height: 1000px;
  	color: gray;
	background-color: black;
}

div.temperature {
    /*vertical-align: text-top;
     */
    font-size: 15px;
    display: inline-block;
    /*
    border: 1px solid green;
    */
}

.Hheader {
	display: inline-block;
	white-space: nowrap;
}

.Cchild {
	display: inline-block;
}


* {
    box-sizing: border-box;
}

a:link {
    color: "red";
    }

a:visited {
    color: "red";
    }


body {
  margin-top: 0px;
  margin-left: 50px;
  margin-right: 50px;
  /*letter-spacing: .2rem;*/
}

/* Style the header */
.header {
    /* background-color: #f1f1f1; */
    background-color: black;
    padding: 20px;
    font-size: 40px;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    /* background-color: #333;*/
    background-color: black;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    /* color: #f2f2f2;*/
    color: orange;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
	/*
    background-color: #ddd;
    color: black;
    background-color: blue;
    color: orange;
    */
    background-color: orange;
    color: blue;
}

/* This is the horizontal rule for the navigation menu */

hr.menu {
	color: blue; height: 3px; background-color: blue; border-width: 0
}

/* This section is to be used for the title of each page */
h1.pagename {
	color: gray;
	background-color: black;
	font-size: 40px;
        /*
	border: 1px solid green;
        */
}

/* Create three equal columns that floats next to each other */
.column1 {
    float: left;
    width: 25%;
    padding: 15px;
}

.column2 {
    float: left;
    width: 60%;
    padding: 15px;
}

.column3 {
    float: left;
    width: 15%;
    padding: 15px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
    .column {
        width: 100%;
    }
}
/* Gallery defs */
div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 180px;
  background-color: black;
  color: gray;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: purple;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

