* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* page details */
body {
    background-color: white;
    font-family: 'Times New Roman', Times, serif;
    color: #facade;
    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: center;
    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;
    height: 500px;
    width:700px;
    overflow: hidden;
}

/* 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;
}