/* for level pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* page bg */
body {
    background-color: black;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;    
    margin: 0;
}

/* container to hold both boxes */
.container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* bop to the top */
    gap: 10px; 
}

/* sidebar */
.left-box {
    background-color: black;
    color: white;
    padding: 20px;
    border: 2px solid white;
    width: 200px;
    height: 500px;
    text-align: left;
}

/* main box */
.box {
    background-color: black;
    color: white;
    padding: 40px;
    border: 2px solid white;
    text-align: center;
    width: 700px;
    min-height: 500px;
    max-height: 500px;
    overflow-y: auto; /* scrollbar no worky... */

}

.box img {
    width: 100%; /* img span entire box */
    height: 200px; /* img height */
    object-fit: cover; /* correct fit */
}
/* style h / p */
.box h1 {
    margin-bottom: 20px;
}

.box p {
    font-size: 18px;
}

a:link {
  color: #ffffff;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #ffffff;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: none;
}

a:active {
  color: red;
  background-color: transparent;
  text-decoration: none;
}
