@font-face {
  font-family: "Billo";
  src: url('https://rava3.neocities.org/fonts/BILLO.ttf');
  }
@font-face {
 font-family: "JoganSoft";
 src: url('https://rava3.neocities.org/fonts/JoganSoft-Regular.ttf');
  }

body{
  background-image:url(/backgrounds/stars10.gif);
  color: #AFEEEE;
  }
  
  h1{
    text-align: center;
    font-family: Billo;
    font-size: 50px;
    }
    
      
    p{
    border: 3px groove #AFEEEE;
    border-radius: 20px;
    padding: 40px;
    margin: 90px;
    font-size: 20px;
    text-align: justify;
    font-family:JoganSoft;
      }

.wrapper {
  display: flex;
  justify-content: space-between;
  height: 100vh; /* Set the wrapper to the full height of the viewport */
  overflow: hidden; /* Hide the wrapper's scrollbar */
}

.left-sidebar, .right-sidebar {
  width: 200px; /* Fixed width sidebars */
 border: 3px groove #AFEEEE;
  border-radius: 20px;
  /* Add other styles like background, padding, etc. */
}

.main-content {
  flex: 1; /* Main content takes up the remaining space */
  overflow-y: auto; /* Adds a scrollbar specifically for the main content */
  /* Add other styles like padding, background, etc. */
}