/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
    @import url('https://fonts.googleapis.com/css?family=Titillium+Web');

.newsbulletin{
  overflow-y: scroll;
}
body {
  background-color: white;
  color: black;
  font-family: "Titillum Web", sans-serif
}
.home{
  background-image: url("rocs6bg.png");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.80);
}
.side{
  display: inline-block;
  background: #22aeff;
  position: fixed;
  top: 80px;
  left: 25px;
  height: 80vh;
  width: 40vw;
  color: white;
}
.news{
  display: inline-block;
  position: relative;
  top: 60px;
  left: 25px;
  height: 250vh;
  width: 90vw;
}
.news h1{
  margin: 30px;
  font-size: 30px;
}
.news p{
  margin: 30px;
  font-size: 20px;
}
.side h2{
  position: relative;
  font-size: 30px;
  margin: 20px;
}
.side .bulletin{
  position: relative;
  margin: 20px;
  font-size: 20px;
}
.about{
  color:#22aeff;
  margin: 150px auto 0 auto;
  width: 900px;
}
.about-content{
  margin: 150px auto 0 auto;
  width: 900px;
}
.about-content h1{
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  font-style: italic;
}
.about-content p{
  text-align: justify;
  font-weight: 500;
  font-size: 22px;
}
.nav{
  height: 50px;
  background: #22aeff;
}
.nav div{
  display: inline-block;
  position: absolute;
  left: 25px;
  padding: 5px;
  font-size: 30px;
  font-weight: 800;
  color: white;
}
.nav ul{
  position: absolute;
  right: 25px;
}
.nav ul li{
  display: inline-block;
}
.nav ul li a{
  color: white;
  padding: 5px;
  font-weight: bold;
}
.roclogobtm{
  display: block;
  position: relative;
  margin: 5px;
  width: 15vw;
}
footer{
  background-color: #333333;
  padding: 10px;
}