:root {
box-sizing: border-box;
margin: 0;
padding: 0;
}
 
body{
background-color: #fcfaf2;
font-family: 'Courier New', monospace;
font-size: 17px;
color: #1c030f;
background: var(--background-color);
background-image: url("https://i.pinimg.com/1200x/aa/d7/43/aad743b93595ae0e4d954673e851353e.jpg");
background-repeat: no-repeat;
background-size: 1370px 900px;
}
 
.container{
display: flex;
flex-direction: row;
gap: 1rem;
max-width: 800px;
margin: 0 auto;
}
 
.imgwrapper{
display: flex;
flex-grow: 600;
flex-basis: 9;
}
 
.img{
align-self: center;
width: 80%;
min-width: 230px;
}
 
.main{
display: flex;
flex-direction: column;
flex-grow: 3;
flex-basis: 0;
justify-content: space-between;
gap: 1rem;
}
 
.box{
  
display: flex;
gap: 1rem;
}
 
.boximg{
align-self: center;
max-width: 200px;
max-height: 200px;
}
 
.content{
  background-color:#ffffffaa;
flex-grow: 6;
flex-basis: 0;
min-width: 280px;
height: 150px;
border: 1px solid #1c030f;
border-radius: 2px;
padding: 1rem;
overflow: scroll;
overflow-x: hidden;
text-align: justify;
line-height: 1;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
 
.headers{
font-size: 20px;
text-align: right;
font-weight: 800;
font-family: 'Courier New', monospace;
border-bottom: 2px dotted #1c030f;
}
 
a{
text-decoration: none;
color: #073c47;
}
 
a:visited{
color: #073c47;
}
 
a:hover{
font-style: italic;
}
 
a:active{
font-style: italic;
font-weight: bold;
}
 
::-webkit-scrollbar{
width: 6px; 
}
 
::-webkit-scrollbar-track{
background-color: #fcfaf2;
}
 
::-webkit-scrollbar-thumb{
background-color: #fcfaf2;
}
 
#credit{
font-size: 12px;
position: fixed;
bottom: 0px;
right: 0;
}

@media(max-width:730px){
.box img{
display: none;
}
}
 
@media(max-width:700px){
.container{
flex-direction: column;
}

.img{
width: 40%;
min-width: 40%;
margin: 0 auto;
}
}