/* Basic styles for Koala Site */
/* Chris Tuey */
/* 02/07/2026 */

@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Modern:wght@100..400&display=swap');

* {
  margin:0;
  padding:0;
}

.clearfloat{
  clear: both;
}

.clearfix {
  overflow: auto;
}

body {
  font-family: Arial, sans-serif;
  background-color: burlywood;
  color:#544caf
  
}

#container {
  width:80%;
  max-width: 1025px;
  padding: 2vw;
  border: 4px solid lightcyan;
  margin: 2vh auto;
  box-shadow: 15px 15px 15px 15px rgba(0,0,0,0.5);
}



 
h1{
  color: #544caf;
  text-align: center;
  font-family: "Playwrite US Modern", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2.0em;
}

h2{
  color: #544caf;
  text-align: center;
  font-family: "Playwrite US Modern", cursive;
  font-weight: 375;
  font-style: normal;
  font-size: 1.75em;
}

h3 {
  color: #544caf;
  text-align: center;
  font-family: "Playwrite US Modern", cursive;
  font-weight: 350;
  font-style: normal;
  font-size: 1.5em;
}


h4 {
  color:crimson;
  text-align: center;
  text-decoration: underline;
  text-align: center;
  font-family: "Playwrite US Modern", cursive;
  font-weight: 300;
  font-size: 1.25em;
}

/* Nav Bar */

nav {
  background-color: whitesmoke;
  text-align:center;
  padding: 10px;
  font-weight: bold;
}

nav ul {
  display:flex;
  flex-direction:row;
  justify-content:center;
  flex-wrap: wrap;
}

nav ul li {
  list-style-type: none ;
  text-decoration: none;
  padding: 10px;
  display:inline;
}


ol li { 
  font-style: oblique;
  color:black
}

ul li{
  font-style: oblique;
  color:black
}

img.border {
  border: 5px solid #f60b0b;
}

img.banner{
  width:100%;
  height: auto;
}

img.left{
  float:left;
  margin: 25px 25px 25px 25px;
  border:5px solid  #f60b0b;
  box-shadow: 15px 15px 15px 15px rgba(0,0,0,0.5);
}

img.right{
  float:right;
  margin-left: 25px;
  border:5px solid  #f60b0b;
  box-shadow: 15px 15px 15px 15px rgba(0,0,0,0.5);
}

p {
  line-height: 1.6; color: black;
  border: 2px solid whitesmoke;
  padding: 5px 5px 10px 25px;
  margin:10px 10px 10px 15px;
  break-inside: avoid-column;
}

.footstyle {
  background-color:brown ;
  color:whitesmoke;
  border: 2px solid whitesmoke;
  text-align:center
  
}
 footer {
  margin-top: 15px;
 }

a:hover{
  color:aqua
}

ol {
  border: 2px solid whitesmoke;
  padding: 5px 5px 10px 25px;
  margin:5px 0 5px 25px;
}

ul {
  border: 2px solid whitesmoke;
  padding: 5px 5px 10px 25px;
  margin:5px 0 5px 25px;
}

@media only screen and (max-width:600px) {

  #container {
    width:100%;
    border:none;
    padding:0%;
    margin:0;
    box-shadow:none;
  }

  nav ul {
    flex-direction:column;
    
  }
  
  img.left{
    display:block;
    float:none;
    /*margin: 0.25% auto;*/
    border:none;
    /*border:5px solid  #f60b0b; */
    box-shadow: none ;
  }

  img.right{
    display:block;
    float:none;
    /*margin: 0.25% auto;*/
    border:none;
    /*border:5px solid  #f60b0b; */
    box-shadow: none;
  }

  img.border {
    border:none;
  }

  

    
} /*end of media query*/

