:root {
box-sizing: border-box;
margin: 0;
padding: 0;
}
 
body{
background-color: #fcfaf2;
font-family: 'Times New Roman', serif;
font-size: 17px;
color: #041e23;
background: var(--background-color);
background-image: url("https://files.catbox.moe/ugpa75.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: 500;
flex-basis: 7;
}
 
.img{
align-self: center;
width: 70%;
min-width: 200px;
}
 
.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 #041e23;
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: normal;
font-family:'Times New Roman', serif;
border-bottom: 2px dotted #041e23;
}
 
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;
}
}