/* main styling */
html, body {
  margin: 0;
  padding: 10px;
  width: 100%;
  height: 100%;
  background-color: #e7e2c8;
  font-family: 'Courier New', Courier, monospace;
  overflow-y: auto; 
  overflow-x: hidden;
  box-sizing: border-box;
}

/* outer cyberpunk border */
.cyber-border {
  margin-left: auto;
  margin-right: auto;
  background-color: #0c0c0c; 
  padding: 4px; 
  max-width: 1000px;

  
  clip-path: polygon(
    0% 0%, 
    calc(100% - 40px) 0%, 100% 40px, 
    100% 100%, 
    40px 100%, 0% calc(100% - 40px)
  );
}

/* inner box site content */
.cyber-content {
  width: 100%;
  height: 100%;
  background-color: #e7e2c8; 
  color: #0e0d0d; 
  padding: 40px;
  box-sizing: border-box;

  overflow-y: auto;
  overflow-x: scroll;

  scroll-behavior: smooth;

  clip-path: polygon(
    0% 0%, 
    calc(100% - 40px) 0%, 100% 40px, 
    100% 100%, 
    40px 100%, 0% calc(100% - 40px)
  );
}

/*horizonal rule black*/
hr {
  border: none;       
  height: 2px;        
  background-color: #000000;
}


/*profile picture*/
.rounded-box {
  width: 200px;
  height: 200px;
  border-radius: 50%; 
  overflow: hidden; 
  border: 5px solid #030303; 
}

.rounded-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}


/*scrollbar*/
.cyber-content::-webkit-scrollbar {
  width: 10px;               
}

.cyber-content::-webkit-scrollbar-track {
  background: #e7e2c8;       
  border-left: 2px solid #0c0c0c;
}

.cyber-content::-webkit-scrollbar-thumb {
  background-color: #0c0c0c; 
  border-radius: 5px;    
}

.cyber-content::-webkit-scrollbar-thumb:hover {
  background-color: #333333;
}

.cyber-content {
  scrollbar-color: #0c0c0c #e7e2c8; 
  scrollbar-width: thin;
}


