body {
    margin: 0px;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
}
.header-contact {
    display: flex;
    flex-direction: column;
    font-size: 19px;
}

.header-contact > p {
    white-space: nowrap;
}

.header-contact > p {
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}

nav > a, .listings-link {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    color: black;
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    margin: 0px 10px;
    transition: 0.3s;
}

nav > a:hover, .listings-link:hover {
    border-bottom: 2px solid black;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}