body {
  margin: 0rem;
  padding: 0rem;
  font-size: 14px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.background{
  background-image: url(../assets/img/cool-background.png);
  background-size: 100%;
  width: 100%;
  height: 520px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  filter: blur(1px);
  -webkit-filter: blur(1px);
}
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #ffffff;
  opacity: 0.45;
  filter: aplha(opacity=50);
  height: 540px;
  z-index: -1;
}
.heading{
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 10rem;
  color: black;
}
h1{
  margin-bottom: .5rem;
  font-size: 3rem;
  font-weight: 600;
}
h5{
  margin-top: 15px;
}

.headline-color{
  /* font-family: "Open Sans", Helvetica, Arial, sans-serif; */
  font-family: 'Bungee Inline', cursive;
  font-weight: 400;
  font-size: 3.4rem;
  color: #19194d;
}
.search-container{
  display: block;
  margin-top: 3rem;
  width: 100%;
  background: #fff;
  border-left: 0;
  border-radius: 0.425rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.search-container input{
  width: 100%;
  padding-left: 10px;
  height: 60px;
  box-sizing: border-box;
  background-color: whitesmoke;
  border: 0;
  font-size: 1.4rem;
  color: #333;
}
.search-bar{
  display: flex;
  flex-direction: row;
}

.suggestions {
  border-top: 2px solid #7a7ad4;
  max-height: 10rem;
  display: none;
  z-index:10;
}

.suggestions.show {
  display: block;
}

.suggestions > div{
  padding: 15px;
  font-size: 16px;
  color: rgb(102, 102, 102);
  border-top: 0.5px solid #c6c6f1;
  cursor: pointer;
  transition: all 0.5s;
  margin-bottom: 0;
}

.suggestions > div:hover, .suggestions > div.selected {
  background-color: #d2daf3;
  color: #333;
}

.search-icon{
  margin-top: 3rem;
  width: 6rem;
  height: 60px;
  font-size: x-large;
  background-color: #333399;
  border-color: #2d2d86;
}

.news-container {
  position: relative;
  padding-top: 12rem;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.newsHeadline{
  font-weight: bold;
}
.author{
  font-size: medium;
}
.news-placeholder{
  min-width: 740px;
}

@media screen and (max-width: 768px) {
  .container {
    width:100%;
    margin:0;
    border-radius:0;
  }
}