body {
    width:100%;
    margin: 0;
    padding: 0;
}

table {
    font-family: 'Open Sans',Arial,sans-serif;
    line-height: 1.5;
    font-weight: 400;
}

.main {
    display: flex;
    flex-direction: column;
    margin: 0;
}

/* Main upper content area */
.upper {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    height: 30%;
    margin-bottom: 1em;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}

.upper h3 {
    position: relative;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.5em;
    letter-spacing: 1.5px;
    color: #005035;
    text-decoration: none;
}

/* Current Conditions panel */
.current {
    flex-grow: 1;
    max-width: 550px;
    min-width: 350px;
}

.current img {
    height: 150px;
    width: 150px;
}

.curr-table, .curr-table th, .curr-table td {
    padding: 0 0.25em 0 0.25em;
    margin-top: 0.5em;
}

/* Forecast Panel */
.forecast {
    position: relative;
    flex-grow: 2;
    align-self: baseline;
    min-width: 750px;
    margin-top: auto;
    margin-bottom: auto;
}

.forecast table {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.forecast img {
    height: 120px;
    width: 120px;
}

.forecast-attribution {
    width: 80%;
    margin: 0 auto;
    text-align: right;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.1em;
    color: #005035;
    text-decoration: none;
}

.tweets {
  flex-grow: 1;
}

/* Main lower content area */
.lower {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Generic graphic link designed for a flex container */
.graphic-link {
    position: relative;
    flex: 33.33%;
    background-color: #005035;
    min-width: 500px;
}

.graphic-link-image{
    width: 100%;
}

.graphic-link-overlay {
    position: absolute;
    width: 95%;
    top: 0;
    color: white;
    text-align: left;
    margin: 1em 0 0 1em;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 1.5em;
    color: white;
    text-decoration: none;
}

.graphic-link-overlay h2 {
    text-align: left;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 2em;
    color: white;
    text-decoration: none;
}

.graphic-link:hover .graphic-link-image {
    opacity: 0.7;
}

/* 50% width class for generics */
.w50 {
    width: 50%;
}

/* Faculty page formatting */
.faculty h3 {
    position: relative;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 2em;
    letter-spacing: 1.5px;
    color: #005035;
    text-decoration: none;
}

.img-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 60%;
    margin: 1.2em 0;
}

.faculty img {
    margin: 1.2em;
    border-radius: 0.7em;
}

.container {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 89%;
  width: 89%;
  opacity: 0;
  transition: .5s ease;
  background-color: #005035;
  margin: 1.2em;
  border-radius: 0.7em;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.container:hover .overlay {
  opacity: 0.9;
}

.name {
  align-self: center;
  color: white;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  letter-spacing: 1.5px;
}

.prof-title {
  color: white;
  align-self: center;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 350;
  font-size: 1em;
  letter-spacing: 1.4px;
}

.info-btn {
  align-self: center;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 1.5px;
  cursor: pointer;
}

/* Current Conditions Page Formatting */
.app-container {
    width: 90%;
    margin: 0 auto;
}

.app-container h3 {
    position: relative;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 2em;
    letter-spacing: 1.5px;
    color: #005035;
    text-decoration: none;
}

/* 
Tabbed Content Classes 
*/

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 1em;
}

.tab button:hover {
    background-color: #ddd;
}

.tab button.active {
    background-color: #ccc;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
} 

/*
Radio Button Classes
*/
.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 1em;
    margin: 1em;
  }
  
  /* Hide the browser's default radio button */
  .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 10%;
  }
  
  /* On mouse-over, add a grey background color */
  .radio-container:hover input ~ .radio-checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .radio-container input:checked ~ .radio-checkmark {
    background-color: #2196F3;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radio-container input:checked ~ .radio-checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .radio-container .radio-checkmark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 10%;
      background: white;
  }

/* STORM Page Styling */
.storm {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.storm h3 {
    position: relative;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 2em;
    letter-spacing: 1.5px;
    color: #005035;
    text-decoration: none;
}

.storm h4 {
    position: relative;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.5em;
    letter-spacing: 1.3px;
    color: #005035;
    text-decoration: none;
}

.storm p {
    text-align: justify;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-decoration: none;
}

.storm-info {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
}

.storm-info a {
    text-decoration: underline;
    font-weight: 500;
    font-style: italic;
    color: #005035;
}

.storm-info img {
    height: auto;
    width: 550px;
}

.info-block {
    display: block;
    margin: 1em;
    flex-grow: 1;
    min-width: 500px;
    max-width: 600px;
}

.social img {
    margin: 0 0.5em 0.5em 0.5em;
}

.chi-info {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

.chi-info a {
    text-decoration: underline;
    font-weight: 500;
    font-style: italic;
    color: #005035;
}

.chi-info img {
    height: auto;
    width: 250px;
}

.chi-block {
    display: block;
    margin: 1em;
    flex-grow: 1;
    min-width: 300px;
    max-width: 500px;
}

.data-table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.data-table td, .data-table th {
    border: 1px solid #ddd;
    padding: 8px;
}

.data-table tr:nth-child(even){background-color: #f2f2f2;}

.data-table tr:hover {background-color: #ddd;}

.data-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #005035;
    color: white;
}