.unica-one-regular {
  font-family: "Unica One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
		  background-color: #f7dcf2;
			background-image:url(gfx/background.jpg);
			background-position: center;
      background-repeat: repeat;
      cursor: url('gfx/cursor.png'), auto;   
      min-height: 100vh;
}

a:hover, button:hover {
  cursor: url('gfx/pointer.png'), pointer;
}


.main{
  width: 800px;
  height: auto;
  margin: 0 auto;
  background: lightblue;
  border: thick double black;
}

.menu {
  display: flex;
  justify-content: space-evenly;
}

a {
  text-decoration: underline;
  color: #323778;
}

nav {
  font-family: "Unica One";
  font-size: x-large;
}

ul {
  background: lightblue;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

li {
  color: #000000;
  background: lightblue;
  display: block;
  float: left;
  padding: 1rem;
  position: relative;
  text-decoration: none;
  transition-duration: 0.5s;
}
  
li a {
  color: #000000;
  text-decoration: none !important;
}

li:hover,
li:focus-within {
  background: thistle;
  cursor: url('gfx/cursor.png'), auto;
}

li:focus-within a {
  outline: none;
}


ul li ul {
  background: thistle;
  visibility: hidden;
  opacity: 0;
  min-width: 5rem;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 1rem;
  left: 0;
  display: none;
  font-size: small;
}

ul li:hover > ul,
ul li:focus-within > ul,
ul li ul:hover,
ul li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block;
}

ul li ul li {
  clear: both;
  width: 100%;
}

.content {
  margin-right: 70px;
  margin-left: 70px;
  font-family: "Oswald";
  font-size: 18px;
  font-weight: 300;
}

.specialfont {
  font-family: "Unica One";
}

h1 {
  font-family: "Unica One";
  font-size: 30px;
  text-align: center;
}

h2 {
  font-family: "Unica One";
  font-size: 20px;
}

.row {
  justify-content: space-evenly;
}

.footer {
  border-top: double black;
  text-align: center;
  font-family: "Oswald";
  font-size: 14px;
  font-weight: 300;
}