
@import url('https://fonts.googleapis.com/css2?family=Gaegu&family=Sniglet:wght@400&display=swap'); 
            body {
                font-family: 'Gaegu', sans-serif;
                font-size: 18px;
                margin: 0;
               background-image: url("https://sadhost.neocities.org/images/tiles/paws1.gif");
                background-size: 150px;
                background-color: none;
                color: floralwhite;
}
header {
/* change the minimum height if you want it to take up more/less space */
    max-height: 100px;
	width: 90%;
    margin: auto;
    padding-top: 10px;
    text-align: center;
}

/* this is your site title displayed at the top of the page */
h1 {
    font-family: "Sniglet", sans-serif;
    margin: 20px auto;
    max-width: 900px;
    width: fit-content;
    padding: 12px;
    color: black;
}
a {
    font-weight: bold;
}
 h2, h3, h4, h5 {
    font-family: "Sniglet", sans-serif;
  color: #89dceb;
}

.right {
  float: right;
  margin-left: 16px;
}
.left {
  float: left;
  margin-right: 16px;
}
.center {
  text-align: center;
}
.white-bg {
    margin: auto;
    width: fit-content;
    background: white;
    border-radius: 10px;
    padding: 0 20px;
    outline: dashed #543d17 2px;;
}


#sidebar {
    background-color: #6d4b14;
 width: 100%;
    padding: 0.7em;
    display: flex;
    flex-wrap: wrap;
    margin: 0.5em;
    max-height: auto;
    max-width: 120px;
    border-radius: 5px;
    	outline: dashed #543d17 2px;;
	outline-offset: 4px;
}
 #sidebar ul {
/* this line takes away the dot in front of the list items */
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;

    
}
#sidebar li a {
color: #f5dcc2;
  background-color: #392b15;
    padding: 5px;
  text-decoration: none;
border-radius: 20px;
}
#avatar img{
    margin: .5em auto;
    text-align: center;
    width: 100%;
    height: auto;
}



#content {
    display: flex;
    max-width: 100%;
    margin: auto;
}

main {
    background-color: #006680;
    margin: 0.4em;
    padding-bottom: 1em;
/*remove these lines if you dont want the scrollbar*/
    max-height: 500px;
    overflow: auto;
    border-radius: 5px;
    border: 2px whitesmoke dashed;
    padding: 20px;
    
}



/***
EZ Gallery by netfriend - https://netfriend.neocities.org/ez-gallery/
Released under the Unlicense - https://unlicense.org/
***/

.gallery { 
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
}

.gallery img {
  flex: auto;
  margin: 0 5px 5px 0;
  object-fit: contain;
  object-position: bottom;
max-width: 60%;
}


footer {
    text-align: center;
    font-size: 0.7em;
    margin: 1em auto;
    max-width: 960px;
    color: black;
}

/* these are the mobile styles! */
@media only screen and (max-width: 750px) {
    #content {
        flex-wrap: wrap;
    }
    #sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        border: none;
        margin: 0;
    }
    header {
        min-height: 300px;
    }
    header  h1 { 
        margin: .4em;
    }
    .white-bg {
        margin: 1em;
    }
    nav ul {
    /* this stuff makes it wrap around on mobile */
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
    #avatar {
        margin: 0 1em;
        max-width: 120px;
    }
    #sidebar {
        max-width: 100%;
    }
    #sidebar ul {   
        margin: 0 1em;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        line-height: 2em;
    }
    #sidebar li {
        padding-left: 0;
        margin: .3em 1em;
    }
    footer {
        margin: 1em;
    }
}


