*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
body{
  background-color: #FBFAF0;
  font-family: 'Questrial', sans-serif;
  font-size: 16px;
  color: #532635;
  margin: 5%;
}
 
.container{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
 
.imgwrapper{
display: flex;
flex-grow: 2;
flex-basis: 0;
}

.imgwrapper .nvis {
      position: absolute;
      display: none;
    }

    .imgwrapper:hover .nvis {
      display: flex;
    }
    
    .imgwrapper:hover .vis {
      display: none;
    }
 
.img{
  align-self: center;
  width: 100%;
  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;
  width: 200px;
}
 
.content{
  flex-grow: 6;
  flex-basis: 0;
  min-width: 220px;
  height: 220px;
  border: 2px solid #5D1838;
  padding: 1rem;
  overflow: scroll;
  overflow-x: hidden;
  text-align: justify;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
 
.headers{
  font-size: 20px;
  text-align: right;
  font-weight: normal;
  font-family: 'Love Ya Like A Sister', sans-serif;
  border-bottom: 2px dotted #5D1838;
}

a{
  text-decoration: none;
  color: #903643;
}

a:visited{
  color: #903643;
}
 
a:hover{
  font-style: italic;
}
 
a:active{
  font-style: italic;
  font-weight: bold;
}
 
::-webkit-scrollbar{
  width: 6px; 
}
 
::-webkit-scrollbar-track{
  background-color: transparent;
}
 
::-webkit-scrollbar-thumb{
  background-color: #5D1838;
}
 
#credit{
  font-size: 12px;
  position: fixed;
  bottom: 0px;
  right: 0;
  text-align: right;
}
 
@media(max-width:730px){
  .box img{
    display: none;
  }
}
 
@media(max-width:515px){
  .container{
    flex-direction: column;
  }

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