html {
  font-family: monospace;
  color: grey;
}

body {
  background-color: mint-cream;
  padding: 5%;
  padding-right: 25%;
  background: mintcream;
}

.sidebar {
  height: 100%;
  max-width: 150px;
  position: fixed; /*keeps it fixed when scrolling*/ 
  z-index: 1; /* Stay on top */
  top: 0%; /* Stay at the top (how far from top, measuring in objects)*/
  right: 0;
  background-color: grey; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
  padding: 5%;
  color: mintcream;
}

li {
  font-size: 15px;
}
li:hover{
  text-decoration: line-through;
  color: darkgray;
}
ul{
  /*Remove the default circle bullet points*/
  list-style: none;
  margin: 0;
  padding: 0;
}

input {
  background: transparent;
  border: 0;
  width: 150px;
  font-family: monospace;
  font-size: 15px;
}
input:focus{
  outline: none;
}

#header {
  height: 10%;
  width: auto;
  background: cadetblue;
  color: mintcream;
  padding-left: 30px;
  padding-top: 30px;
}

#news {
  background: white;
  padding: 30px;
}

#weather {
  background: white;
  padding: 10px;
  padding-left: 30px;
}

#idea_gen {
  background: #f2f2f2;
  padding: 30px;
}

#color_block{
 border-radius: 50%; /* make a circle*/
 height: 80px;
 width: 80px;
 margin: 0 auto; /* center this object! (auto margins around it, idk about the 0)*/

 transition: all .3s ease;
}

h3{
  font-size: 20px;
  text-align: center;
}

h4{
  text-align: center;
}

/* Button effects */

button{
  width: 30%;
  margin-left: 30%;
  margin-top: 5%;

  font-family: monospace;
  font-size: 15px;
  color: grey;
  padding: 5px;

  border: none;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 7px darkgrey;
}
button:hover{
  background-color: lightgrey;
}
button:active{
  color: grey;

  box-shadow: 0 4px grey;
  transform: translateY(3px);
}

/* Column stuffs */
.column {
  float: left;
  width: 30%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

a {  /* Links */
  /* Keeps it its own block */
  display: block;
  color: cadetblue;
}

img {
  height: 150px;
  border-radius: 10%;
  margin: 10px;
}

