@import url("https://emmyswoodlandcottage.neocities.org/css/style.css");

#home-container {
    min-height: auto;
    width: clamp(150px, 100%, 1200px);
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    grid-template-areas:
    "navi main";
}             
.navi { 
    text-align: center;
    grid-area: navi; 
    overflow: auto;
      border: 9px solid;
    border-image: url( 'https://emmyswoodlandcottage.neocities.org/borders/IMG_6892.png' ) 9 fill round;
}          
main { 
    grid-area: main; 
}     
th, td{
    border: none;
} 
td{
    background-color:#f2edce00;
}    
table{
    border: none;
}
.moo{
    width: 100px;
    height:80px;
}
.pfp{
    width: 160px;
    height: 160px;
    border-radius: 25px;           
}           
#kofi{
    width: 270px;
    max-height: 270px;
    right: 0px;
    position: fixed;
    bottom: 5px;
    max-width: 25vw;
    }
@media (max-width: 880px) {
    #home-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "navi"
    "main";
}  
main{
    overflow: auto;
}
}