/* 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." */

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fd5e53;
  background-image: url('Dreamcore Weirdcore.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  font-family: Verdana, Tahoma, sans-serif;
  color: black;
  overflow-x: hidden;
}
.main_container{
 
  background-color: #ffffff;
  border: 2px solid #D4D0C8;
  padding: 20px;
  box-shadow: 4px 4px 0 #808080;
  width: 50%;
  height: auto;
  overflow-y: auto;
  
  position: absolute;
  top:293px;
  left:25%;
}
.title_box{
  position: absolute;
  top: 50px;
  left: 25%;
  
  
  background: #ffffff;
  border: 2px solid #D4D0C8;
  padding: 20px;
  box-shadow: 4px 4px 0 #808080;
  width: 90%;
  max-width: 955px;
  margin-top: 30px;
}
.left_sidebar{

background-color: #ffffff;
border: 2px solid #D4D0C8;
padding: 20px;
box-shadow: 4px 4px 0 #808080;
width: 10%;
height: 65vh;
overflow-y: auto;

position: absolute;
top:79px;
left:233px;
}
.nav-bar {
  background: linear-gradient(to bottom,#cfe0f4 , #245DDA, #3a6ea5);
  overflow: hidden;
  padding: 10px;
  border: 2px solid #5b8cc3;
  border-radius: 0px;
  position: absolute;
  top: 215px;
  left: 25%;
  z-index: 10;
  
  

}
.nav-bar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  display: inline-block;
}
.nav-bar a:hover {
  background-color: #3a65c1;
  color: #fff;
}


