/* note to self: here's the code to link this <link href="/style.css" rel="stylesheet" type="text/css" media="all"> */
   
  body {
      background-image: url("water.png");
      cursor:url("https://sillywitchling.neocities.org/seashellpointer.png"),auto;
  }
  @font-face {
    font-family:"Daydream";
    src:url(Daydream.ttf);
  }
  @font-face {
    font-family:"Perfect";
    src:url(Perfect.ttf);
  }
  @font-face {
    font-family:"rainyhearts";
    src:url(rainyhearts.ttf);
  }
  h1 {
      border-style: outset;
      border-width: thick;
      border-color: lightblue;
      margin:auto;
      max-width:1035px;
      padding-top: 10px;
      padding-bottom: 10px;
      text-align: center;
      background-color:SteelBlue;
      color:lightblue;
      font-family: "Daydream";
  }
  h2 {
      border-style: outset;
      border-width: thick;
      border-color: lightblue;
      margin:auto;
      max-width:1035px;
      padding-top: 10px;
      padding-bottom: 10px;
      text-align: center;
      background-color:SteelBlue;
      color:lightblue;
      font-family: "Daydream"
  }
  h3 {
      border-style: outset;
      border-color: lightblue;
      margin: auto;
      max-width:1035px;
      padding: 0;
      text-align: center;
      background-color:steelblue;
      color:lightblue;
      font-family: "Perfect"
  }
  p {
      border-style: inset;
      border-width: thick;
      border-color:white;
      margin:auto;
      max-width:1035px;
      padding-top: 10px;
      padding-bottom: 10px;
      text-align: center;
      background-color:lightblue;
      color:darkslateblue;
      font-family:"rainyhearts";
      font-size:20px;
  }
  footer {
          border-style: outset;
          border-width: thick;
          border-color:lightblue;
          margin:auto;
          max-width:1035px;
          padding-top: 10px;
          padding-bottom: 10px;
          text-align: center;
          background-color:steelblue;
          color:lightblue;
          font-family:"rainyhearts";
  }
  a {
    color:darkslateblue;
  }
  a:hover {
    cursor:url("https://sillywitchling.neocities.org/seashellcursor.png"),auto;
  }
  
  ul {
      border-bottom-style: outset;
      border-left-style: outset;
      border-right-style: outset;
      border-width: thick;
      border-color: lightblue;
      text-align:center;
      list-style-type: none;
      margin:auto;
      max-width:1035px;
      padding:0;
      overflow: hidden;
      background-color:steelblue;
      font-family:"rainyhearts";
  }
  nav {
      text-align:center;
      min-height:50px;
      line-height:50px;
  }
  nav a {
  color: lightblue;
  text-align: center;
  padding: 20px 25px;
  text-decoration: none;
  font-family:"rainyhearts"
}
nav a:hover {
  background-color: darkslateblue;
  border-style: inset;
  border-color:lightblue;
}
.scroller {
  overflow-x: hidden;
  overflow-y: scroll;
  padding:0px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: lightblue;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: darkslateblue;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown-content a:hover {
  background-color:darkslateblue;
  color:lightblue;
  cursor: pointer, url("seashellpointer.png"), auto;
}

.dropdown:hover .dropdown-content {
  display: block;
}
  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
  
  .container {
  display: grid;
  grid-template-columns: 20% 58% 20%;
  padding:10px;
  align-content:center;
  column-gap:15px;
  max-width:1035px;
  margin-left:220px;
  margin-right:220px;
  }
  .container div {
  text-align: center;
}
  
  div.gallery {
    display:grid;
    grid-template-columns:auto auto auto auto;
    margin:auto;
    max-width:1035px;
  }
  
  div.gallery-item {
  margin: 5px;
  min-width: 180px;
  text-align:center;
  border-style: outset;
  border-width: thick;
  border-color: lightblue;
  background-color:SteelBlue;
  color:lightblue;
}

div.gallery-item:hover {
  background-color: darkslateblue;
  border-style: inset;
  border-color:SteelBlue;
}

div.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit:cover;
}

div.gallery-item img:hover {
  opacity: 0.3;
}

div.gallery-item .desc {
  padding: 15px;
  font-family: "Perfect";
}