@import url("https://emmyswoodlandcottage.neocities.org/css/style.css");                 
main { 
    grid-area: M; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas:
    "left right";
    gap: 5px;
    border: none;
    border-image: none;
} 
.left{
    grid-area: left;
}
.right{
    grid-area: right;
}
.left, .right{
 border: 9px solid;
    border-image: url( 'https://emmyswoodlandcottage.neocities.org/borders/IMG_6892.png' ) 9 fill round;
}
td{
    background-color: rgba(255, 255, 255, 0);
    border-image: none;
}    
td > p{
    padding: 10px;
} 
.cuties{
  display: flex;
  justify-self: center;
  width: clamp(150px, 100%, 450px);
  height: auto;
}
.pfp{
  display: flex;
  width: clamp(150px, 100%, 200px);
  height: auto;
    border-radius: 25px;
}

.media{
    display: flex;
  width: clamp(50px, 50%, 450px);
  height: auto;
}
      
#about{
    max-width:700px;
    max-height:200px;
    overflow:auto;
    display: block; 
    border-width: 9px;
    border-style: solid;
    border-image: url( 'https://emmyswoodlandcottage.neocities.org/borders/IMG_6895.png' ) 9 fill round;
}
table{
    border: none;
    border-image: none;
}
@media (max-width: 880px) {
    main {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "left"
    "right";
}  
main{
    overflow: auto;
}
}