announcement-bar {
  background-color: rgba(14,87,197,0.75);
  color: #ffffff;
  padding: 10px;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.announcement-bar {
  background-color: rgba(0,0,0,0.75);
  color: #ffffff;
  padding: 0px;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}

#announcement-bar a:hover {
  color: #ca5efe;
  transition: all 1s ease;
}

#announcement-bar a {
  color: #adb6fe;
  font-family: 'Sofia Pro';
  font-size: 15px;
  line-height: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0px;
  font-weight: 100;
  transition: all 1s ease;
}

#announcement-bar p {
  font-family: 'Sofia Pro';
  font-size: 18px;
  line-height: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0px;
  margin-left: 30px;
  font-weight: 100;
  color: rgb(235,222,212);
}

@media (max-width: 768px) {
  #announcement-bar p {
    font-family: 'Sofia Pro';
    font-size: 14px;
    margin: 0px;
  }
}

@media (max-width: 768px) {
  #announcement-bar a {
    font-family: 'Sofia Pro';
    font-size: 14px;
    margin: 0px;
  }
}

