/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

html {
  --d-blue: #3D5A80;
  --l-blue: #98C1D9;
  --vl-blue: #E0FBFC;
  --orange: #EE6C4D;
  --black: #293241;

}

.container {
  display: grid;
  height: 100vh;
  background-color: var(--l-blue);
  grid-template-rows: 50px 50px 6fr 1fr;
}

/* Location: Very top of the page - Above main content*/
.location-search {
  display: flex;
  justify-content: center;
  padding: 5px;
  background-color: var(--d-blue);
}

#country-dropdown {
  border: 2px solid transparent;
  border-radius: 5px;
  background-color: var(--vl-blue);
  width: 20vw;
  margin: 5px;
  text-align: center;
}
.location-btn {
  border: 2px solid transparent;
  border-radius: 5px;
  background-color: var(--orange);
  margin: 5px;
}

/* Underneath location search, above everything else - Above main content*/
.when-bar {
  display: flex;
  justify-content: center;
  background-color: var(--d-blue);
  border-bottom: 3px solid var(--black);
}

.weather-container {
  margin: auto;
  border-radius: 5px;
  background-color: var(--orange);
  padding: 25px;
}

#weather-today {}

.daily-breakdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--d-blue);
  width: 10vw;
  margin: 10px;
  border-radius: 5px;
}

.daily-breakdown img {
  background-color: rgba(0, 0, 0, .1);
  margin: 10px;
  border-radius: 100%;
}

.today-weather-info {
  display: flex;
  justify-content: center;
}

table, td, th {
  margin: 10px;
  border-collapse: collapse;
  border: 1px black solid;
  height: 25px;
  width: 250px;
  padding: 5px;
}

tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, .1);
}

tr:hover {
  background-color: rgba(0, 0, 0, .2);
}

#description {
  text-transform: capitalize;
}

.current-day,
.day-of-the-week {
  color: var(--vl-blue);
  font-weight: 600;
  text-decoration: underline;
}

.day-temp,
.current-temp {
  color: var(--vl-blue);
}

/* At the bottom of the page */
.day-report {
  display: flex;
}

#today-btn {
  background-color: var(--orange);
  border-radius: 5px;
  padding: 10px;
  color: var(--vl-blue);
  border: none;
  margin: 10px;
}

.hidden {
  visibility: hidden;
}