/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
    font-family: 'YourCustomFont'; /* You can name it anything you want */
    src: url('https://y3lizxjwdw5r.neocities.org/RosmatikaRegular-BWA45.ttf') format('truetype'); /* Update the path to your font file */
    font-weight: normal;
    font-style: normal;
}

body {
  /*color: black;*/
  /* font-family: 'YourCustomFont', Verdana; */
  font-family:  Verdana; 
  text-align: center; 
  max-width: 60;
  background-image: url("https://y3lizxjwdw5r.neocities.org/imgs/fiori1.jpg");

}

div{
   background-color: black; 
    text-align: center; 
    width: 40%;
    margin: 0%;
    padding: 5%;
}

nav{
  text-align: left; 
  width: 40%;
  margin: 0%;
  padding: 5%;
}

/* [COLLAPSIBLE] */
#menutree label {
/*  position: relative;*/
  display: block;
  width: 100%;
  cursor: pointer;
}
#menutree input[type=checkbox] {
  display: none; /* Hide ugly checkbox */
}

/* Hide/collapse by default */
li.collapse ul {
  visibility: hidden;
  opacity: 0;
  max-height: 0; /* CSS bug. Cannot animate height... */
  transition: all 0.5s;
}
label::after {
  content: "\25b6";
/*  position: absolute; */
  top: 0;
  right: 0;
  transition: all 0.5s;
}

/* Show when checked */
li.collapse input:checked ~ ul {
  visibility: visible;
  opacity: 1;
  max-height: 999px; /* Just give a big enough height for animation */
}
li.collapse input:checked ~ label::after {
  transform: rotate(90deg);
}






