body {
  
  color: white;
  font-family: Bricolage Grotesque;
  background-color: #DDA0DD;
 
  cursor: url('kursory/uwu.png'), auto;

}

a {
  text-decoration: none;
  color: black;
  padding-right: 10px;
  transition: background-color 1s ease-out;
}


a:hover {
  background-color: whitesmoke;
  cursor: url('kursory/uwu.png'), auto;
 
}

h1{
   font-size: 3.2em;
  }


h2{
  color: #6297ad;
  }



/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #6297ad;
  transition: background-color 0.5s ease-out;
  font-size: 1.2em;
  color: white;
  font-family: Bricolage Grotesque;
  cursor: pointer;
  padding: 18px;
  width: 20%;
  border: none;
  text-align: left;
  outline: none;
  
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color:  #ba62ba;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 18px;
  display: none;
  overflow: hidden;
  background-color: #ba62ba;
}

