body {
  background-color: #E9AFAF; 
  overflow: hidden;
  font-family: Roboto;
}
.responsive-canvas {
        padding: 0;
        margin: auto;
        display: block;
}
h1 {
  text-align: center;
  display: block;
  font-family: inherit;
  color: #ffffff
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #ddd;
  padding: 10px 10px;
  border-radius: 8px;
}
/* Style the header links */
.header a{
  float: left;
  color: black;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
  font-family: inherit;
  font-size: 18px;
  line-height: 25px;
  border-radius: 8px;
}
.dropdown {
  float: right;
  overflow: hidden;
}
.dropdown .dropbtn {
  font-size: 18px;  
  border: none;
  outline: none;
  color: black;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  
  text-decoration: none;
  line-height: 25px;
  border-radius: 8px;
  padding: 5px 10px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
  color: #b3b3b3;
}

/* Change the background color on mouse-over */
.header a:hover, .dropdown:hover .dropbtn{
  background-color: #b3b3b3;
  color: black;
}

.header a.active {
  background-color: #ff5555;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 100px;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  z-index: 1;
  
  border-radius: 8px;
}

.dropdown-content a {
  float: none;
  color: black;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown-content a:hover{
  background-color: #ddd;
  color: black;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
  .dropdown {
    float: none;
  }
}
}
