* {box-sizing: border-box}

body {
  background-color: #000000;
  background-image: url("images/RS-BG-blue.png");
  color: #FFFFFF;
  font-family: "Courier New", "Courier", monospace;
}

a:link, a:visited, a:link:active, a:visited:active {
  color: #BF94FF;
  text-decoration: none;
}

.title {
  display: block;
  background-color: #181818;
  border: 1px solid #303030;
  border-bottom: none;
  color: inherit;
  font-family: inherit;
  font-size: 22px;
  padding: 20px;
  color: #FFFFFF;
  margin: 0.68em;
  margin-bottom: 0px;
  margin-left: 0.62em;
  margin-right: 0.62em;
}

.navbar {
  overflow: hidden;
  background-color: #181818;
  border: 1px solid #303030;
  border-top: none;
  color: inherit;
  font-family: inherit;
  font-size: 20px;
  margin: 0.68em;
  margin-top: 0px;
}

.navbar a {
  float: left;
  padding: 20px;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  border: none;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 20px;
  background-color: inherit;
  font-family: inherit;
  font-size: 20px;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #303030;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #000000;
  padding: 20px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 20px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.content {
  display: block;
  padding: 0px 16px;
  border: 1px solid #303030;
  font-family: inherit;
  background-color: #181818;
  margin: 0.83em;
}

img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1024px){
  .navbar {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .content {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .title {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}           

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px){
  .navbar {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .content {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .title {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
          
/* Media Query for Large screens */
@media (min-width: 1281px) {
  .navbar {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .content {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .title {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}