* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Roboto Serif", serif;
}

#navbar {
  width: 100%;
  /* background-color: #0e0247; */
  background-color: white;
  box-shadow: 0px 2px 40px black;
  padding: 10px;
}

#navbar a {
  color: gray;
}

#navbar .active {
  color: black;
  /* border-bottom: 2px solid #4d6a79; */
  border-bottom: 2px solid #d1b000;
  background-color: white;
}

#navbar a:hover {
  color: #d1b000;
  transition: all 0.5s;
  font-size: 15px;
}

#navbar img {
  width: 100px;
  height: 50px;
}

#navbar .dropdown-item:active {
  background-color: #d1b000;
  color: white;
}

#data {
  background-color: #15222b;
  display: flex;
  padding: 30px;
}

#data p {
  font-size: 13px;
  color: white;
  display: flex;
  display: inline-block;
  /* background-color: aqua; */
}

/* icons */
#data .icon1 {
  position: relative;
  bottom: 10px;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  color: white;
}

#data .icon2 {
  position: relative;
  bottom: 20px;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  color: white;
}

#data .icon3 {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  color: white;
}

#data .bi-facebook,
.bi-instagram {
  height: 40px;
  width: 40px;
  color: white;
  margin-left: 30px;
}

/* #data .bi-instagram {
  margin-left: 30px;
} */

#data .bi-facebook:hover {
  color: #1b74e4;
  transition: all 0.5s;
}

#data .bi-instagram:hover {
  color: #cc4793;
  transition: all 0.5s;
}

::selection {
  background-color: #d1b000;
  color: white;
}

/* @media all and (min-width: 440px) {
  .bi-facebook .bi-instagram {
    width: 15px;
    height: 15px;
    margin-left: 20px;
  }

  .bi-facebook {
    display: inline-block;
  }
} */

@media (max-width: 500px) {
  #data {
    padding: 10px 0px 0px 0px;
  }

  #navbar {
    padding: 0px;
  }
}

/* dropdown copy w3school */

/* Dropdown Button */
.dropdown {
  color: white;
  /* border: none; */
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: white;
  transition: all 0.5s;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-menu {
  transition: all 0.5s;
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropdown-menu {
  transition: all 0.5s;
  background-color: white;
}
