.navbar img {
  float: left;
  display: block;
  text-align: center;
}

.navbar {
    overflow: hidden;
    background-color: skyblue;
  }
  
  .navbar p {
    float: left;
    font-size: 18px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .subnav {
    float: left;
    overflow: hidden;
    top: 0;
  }
  
  .subnav .subnavbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }

  .navbar p:hover, .subnav:hover .subnavbtn {
    background-color: rgb(219, 115, 132);
    border-radius: 5%;
  }
  
  .subnav-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: rgb(219, 115, 132);
    width: 100%;
    z-index: 1;
  }
  
  .subnav-content p {
    float: left;
    color: white;
    text-decoration: none;
  }
  
  .subnav-content p:hover {
    background-color: #eee;
    color: black;
  }
  
  .subnav:hover .subnav-content {
    display: block;
  }