body{
  background: #b9bfc2;
  font-family: sans-serif;
}

.show{
  margin: 5px 0;
  padding: 10px;
  font-size: 2.5rem;
  font-weight: bold;
  background: #0985c1;
  color: white;
  text-align: justify;
}
.stories{
  display: grid;
  gap: 5px;
  margin: 5px 0;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.story{
  border: 2px solid #0985c1;
  height: 200px;
  position: relative;
}
.story h2{
  color: white;
  width: 100%;
  background: #0985c1;
  margin: 0px;
  padding: 10px 0;
}
.story p{
  padding: 10px;
  font-size: 1rem;
  width: 95%;
  font-style: italic;
  font-weight: bold;
  display: block;
}
.story ul{
  color: white;
  width: 100%;
  background: #0985c1;
  margin: 0px;
  padding: 10px 0;
  position: absolute;
  bottom: 0;
} 
.story ul li{
  list-style: none;
  display: inline;
  padding: 10px 5px;
  margin-left: 5px;
}
.story a{
  list-style: none;
  display: inline;
  padding: 5px;
  margin-left: 5px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  position: absolute;
  bottom: 2px;
  right: 2px;
}
.story a:hover {
  background: white;
  color: #0985c1;
}
.fcontent{
  display: flex;
  width: 100%;
}
.flink{
  flex-basis: 50%;
}
.flogo{
  flex-basis: 50%;
  justify-content: center;
  align-content: center;
}
.flogo img{
  width: 100%;
  padding: 10px 5px;
}
.flink h4{
  margin-bottom: 10px;
  color: #0985c1;
  margin-left: 5px;
}
.flink small{
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 5px;
  margin-left: 5px;
}
.flink small:hover{
  color: #0985c1;
}
footer{
  background: #bccdda;
}
/*------------- QUERIES ---------------*/

@media(max-width: 600px){
  .menuBtn{
    font-size: 1rem;
    color: #0985c1;
    cursor: pointer;
    margin: 2px 0px;
    padding: 10px;
    font-weight: bold;
    border: 2px solid #0985c1;
  }
  .menuBtn:hover {
    background: #0985c1;
    color: #b9bfc2;
  }
  .logo img{
  width: 100%;
  }
  .menu ul{
    background: #0985c1;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .menu ul li{
    list-style: none;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .menu ul li a{
    text-decoration: none;
    padding: 10px 0;
    background: #0985c1;
    color: #474848;
    width: 100%;
    text-align: center;
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
  }
  .menu ul li a:hover{
    color: #b9bfc2;
  }
  .menu_wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .social button{
    background: #b9bfc2;
    color: #0985c1;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #0985c1;
    margin: 2px 0;
    padding: 10px;
  }
  .social button:hover{
    background: #0985c1;
    color: #b9bfc2;
  }
}

@media(min-width: 600px){
  .navWrap{
    display: flex;
    justify-content: space-between;
  }

  .logo img{
    width: 150px;
    margin: 0;
  }
  .btn{
    display: none;
  }
  .menu ul{
    padding: 0;
  }
  .menu ul li{
    list-style: none;
    text-align: center;
    display: inline;
  }
  .menu ul li a{
    text-decoration: none;
    padding: 10px;
    background: #0985c1;
    color: #b9bfc2;
    font-weight: bold;
    font-size: 1rem;
  }
  .social button{
    text-decoration: none;
    padding: 10px;
    background: #b9bfc2;
    color: #0985c1;
    font-weight: bold;
    font-size: 1rem;
    border: 2px solid #0985c1;
  }
  .menu ul li a:hover{
    background: #b9bfc2;
    color: #0985c1;
  }
  .social button:hover{
    background: #0985c1;
    color: #b9bfc2;
  }
} 

@media(min-width: 1180px){
  .show{
    width: 80%;
    margin: auto;
  }
  nav{
    width: 80%;
    margin: auto;
  }
  #wrapper{
    width: 80%;
    margin: auto;
  }
  footer{
    width: 80%;
    margin: auto;
  }
}  
@media(min-width: 943px){
  #wrapper{
    display: flex;
  }
  .stories{
    flex-basis: 80%;
  }
  .ads{
    flex-basis: 20%;
    border: 2px solid #0985c1;
    height: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 0;
  }
}
