/* FONT SHIT */
@font-face {
  font-family: 'handwritefont';
  src: url('/Assets/fonts/C2_handwritefont-Regular.woff');
} 
@font-face {
  font-family: 'thickhandwrite';
  src: url('/Assets/fonts/ThickHandwriting-Regular.woff') format('woff');
}  
   
h1 {
  font-family: handwritefont;
   }
p {
  font-family: handwritefont;
}
   
body {
  width:auto;
  background-image: url('/Assets/Backround.png');
  background-repeat: repeat; /* Prevents image tiling */
  background-position: center; /* Centers the image within the container */
  background-size: auto; /* Scales the image to cover the entire container without distortion, though some cropping may occur */
  position:absolute;
} 
a {
  font-family:handwritefont;
  text-decoration: none;
   color: #360123;

} 
a:hover {
  color: #8F1461;
}
#allsections{
  display:flex; 
  min-width: 0px;
  max-width:1422px;
  flex: 0 0 auto; 
  justify-content:center;
  flex-direction:row;
  flex-wrap: wrap;
  height:auto;
  margin:5px;
  }
/*HEADING*/

  #header{
    display:flex;
    order:-1;
    width:100%;
    flex: 0 0 auto; 
    flex-direction:column;
    }
  #logobox img {
  display:flex;
  order:1;
  width:45%;
  min-width: 0px;
  width: 34%; 
  flex: 0 0 auto; 
  height: auto;
  flex-wrap:wrap;
  justify-content:center;
  align-self:center;
 
  z-index:-1;
  }
  #logobox {
  display:flex;
  order:1;
  width:100%;
  flex: 0 0 auto; 
  justify-content:center;
  align-self:center;
  min-width: 0px;
  }
  .navbar {
  display:flex;
  order:2;
  flex: 0 0 auto; 
  justify-content:center;
  align-self:center;
  position:relative;
  flex-wrap:nowrap;
  flex-direction:row;
  }
  .navbar  ul{
    list-style-type: none;
    display:flex;
    flex: 0 0 auto; 
    flex-wrap:nowrap;
    flex-direction:row;
    text-decoration:none;
    align-self:baseline;
    white-space: nowrap;
    justify-content:space-evenly;
    text-align: center;
    font-weight: bold;  
    font-size: 30px;
    font-style: italic;
    font-family: monospace;
    background-color: #ffe268;
    background-repeat: repeat; 
    background-position: center; 
    background-size: auto; 
    margin:0px;
    padding:5px;
    gap:20px;
  }     
  .navbar li::before {
  content: "\2605"; 
  }
  .navbarl:hover {
  transform:translateY(5px);
  }


/*END OF HEADING*/

/*FOOTER*/
  #footer-box {
  display: flex;
  order: 10;
  width: 72%;
  flex: 0 0 auto; 
  height: 30%;
  margin-left:-5%;
  margin-right:-5%;
  border: 100px solid transparent;
    border-image-slice: fill;
    border-image-source: url('/Assets/smallboarder2.png');
    border-image-slice: 660;
    border-image-repeat: round;
}
  #pfp img{
  width:20%;
  flex: 0 0 auto; 
  align-self:flex-start;
}
  #pfp {
  display:flex;
  width:20%;
  flex: 0 0 auto; 
  align-self:flex-start;
  margin-bottom:-10px;
  margin-right:3px;
}
  #contact-list  ul{
  flex-direction: row;
  list-style-type: none;
  flex: 0 0 auto; 
  justify-content:space-between;
  align-self:baseline;
  position:relative;
  left:-7%;
}
  #contact-list li::before {
  /* look up 'css code symbols' for more symbols */
  content: "\2605"; 
  margin:3px;
}
  #contact-list {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 5%;
  flex: 0 0 auto; 
  position: relative;
  left: -138%;
  width: 24%;
  text-wrap: wrap;
  height: auto;
  overflow-wrap: break-word;
  white-space: normal;
   color: #360123;
  margin-top: 8%;
  font-size: 30px;
  margin-bottom: 0px;
}
  .contact-listl:hover {
  transform:translateY(5px);
  }
  .footer-img img{
  display:flex;
  width:10%;
  flex: 0 0 auto; 
  margin:2px;
}
  #footer-txt  {
    position:relative;
    display:flex;
    width:auto;
    flex: 0 0 auto; 
    margin-top:-3%;
    font-size:50px;
    white-space: nowrap;
} 
  .footer-navbar {
  display: flex;
  position: relative;
  font-size: 30px;
  left: -43%;
  width: 50%;
   color: #360123;
  flex: 0 0 auto; 
  margin-top: 10%;
  margin-right: 0px;
}
  .footer-navbar ul{
  /*display: flex;*/
  list-style-type: none;
  /* flex-wrap: nowrap; */
  flex-direction: row;
  flex: 0 0 auto; 
  column-count:3;
  text-decoration: none;
  align-self: baseline;
  white-space: nowrap;
  justify-content: space-evenly;
  text-align: center;
  font-style: italic;
  font-family: monospace;
  margin: 5px;
  padding: 5px;
  gap: 5px;
}
  #secnd-row{
  position: relative;
  left: 20%;
  width: 200%;

}
  .footer-navbar li::before {
    content: "\2605"; 
}
  .footer-navbarl:hover {
    transform:translateY(5px);
}




/*BREAKPOINTS*/

  @media ( max-width: 390px) {
    body {
      max-width: 390px;
    }
    #allsections {
    /*border:black solid 3px;*/
    max-width:390px;
    margin:0px;
    margin-right:-100%;
  }
   #logobox  {
    width:200%;
  }
  .navbar ul{
    font-size:14px;
    gap:5px;
  }
  #main-content{
    display:flex;
    max-width:390px;
    border:black 3px;
  }
  #footer-box {
    max-width:390px;
    display:flex;
    border:black solid 3px;
    position:relative;
    align-self:center;
    width:90%;
  }
  #contact-list {
    font-size:15px;
    position:relative;
    left: -143%;
    max-width:390px;
  }
  .footer-navbar ul{
    font-size:15px;
    flex-direction: row;
    flex: 0 0 auto; 
    column-count:2;
    text-decoration: none;
    align-self: baseline;
    white-space: nowrap;
    max-width:390px;
    justify-content: space-evenly;
    text-align: center;
    font-style: italic;
    font-family: monospace;
    margin: 5px;
    left:-120px;
    padding: 5px;
    gap: 5px;
  }
   .footer-navbar{
      left:-130px;

   }
  #secnd-row{
    position: relative;
    left: 0%;
    max-width:390px;
    margin-right:0%;
    width: 0%;

}
 h1 {
  font-size:30px;
 }








