:root {
  --lightgray: #F0F0F0;
  --blue: #2445E6;
  --main-font: helvetica;
  --coconut: #FF5A60;
  --black: #272A2E;
  --powder-blue: #93BBDF;
  --mobylmenu: #00A6FF;
  --pearl: #F0F0F0;
  --charcoal: #36454F;
}

.navbar {
    background-color: var(--black);
    position: relative;
    display: flex;
    align-items: center;
    z-index: 3;
}

.navbar img.logo {
    float: left;
    padding: 10px;
    height: 2.5rem;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

.navbar a:hover {
  color: var(--powder-blue);
}

/* Style The Dropdown Button */
.dropbtn {
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background-color: var(--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;
  padding-top: 5px;
  flex-direction: column;
  align-items: center;
  background-color: var(--black);
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

/* Links Inside The Dropdown */
.dropdown-content a {
  color: white;
  padding: 12px 8px;
  text-decoration: none;
  display: flex;
  font-size: 0.9rem;
  width: 100%;
  justify-content: center;
}

/* Change Color Of Dropdown Links On Hover */
.dropdown-content a:hover {
  color: var(--powder-blue);
}

/* Show The Dropdown Menu On Hover */
.dropdown:hover .dropdown-content {
  display: flex;
}

/* Change The Background Color Of The Dropdown Button When The Dropdown Content Is Shown */
.dropdown:hover .dropbtn {
  color: var(--powder-blue);
}
