


.albums {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(1, minmax(240px, 1fr));
  font-family: "Black Ops One";
  font-size: 15px;
       background-image: url(images.jpg);
  margin: 15px auto;
  padding: 10px;
  border: 4px solid blue;
  width: 85%;
}
  
.albums img {
  border: 2px solid black;
  width: 75%; 
}

@media only screen and (min-width: 768px) {
  .albums {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    font-family: "Black Ops One";
    font-size: 15px;
    background-image: url(images.jpg);
    margin: 15px auto;
    padding: 10px;
    border: 4px solid  blue;
    width: 85%;
  }
  .albums img {
    border: 2px solid black;
    width: 300px;
  }
}

body {
  margin: 0px;
  color: black;
  font-family: "Black Ops One";
  font-size: 20px;
  text-align: center;

  background-repeat: repeat;
 
  
 
  background-color: red;
  background-image: url(126.png);
  
    cursor: url("smorecursor.gif"), auto;
}

.main {
  background-image: url(256.png);
  margin: 15px auto;
  padding: 10px;
  border: 4px solid blue;
  height: 85%;
  width: 65%;
   font-family: "Black Ops One";
}



.albums a {
  color: black;
  text-decoration: none;
   font-family: "Black Ops One";
}

.albums img:hover, a:hover{
  opacity: 0.8;
  text-decoration: underline;
}

.album {
  font-family: "Black Ops One";
  font-size: 15px;
background-image: url(256.png);
  margin: 15px auto;
  padding: 10px;
  border: 4px solid blue;
  width: 85%;
}

nav {
  background: red;
  height: 30px;
}

nav ul {
  margin-top: 0px;  
}

nav ul li {
 display: inline;
 color: black;
 text-decoration: none;
 padding: 10px;
}

nav a {
 color: black;
 text-decoration: none;
 padding: 5px;
}

.navitem:hover {
  text-decoration: underline;
  color: goldenrod;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.slides {
  display: none;
}

#img1 {
  display: block; 
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  color: grey;
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.text a {
  color: #f2f2f2;
  text-decoration: none;
}

.text a:hover {
  color: grey;
  text-decoration: underline;
  transition: 0.6s ease;
  border-radius: 1px 1px 1px 1px;
  background-color: rgba(0,0,0,0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.numbertext:hover {
  color: grey;
  transition: 0.6s ease;
  border-radius: 1px 1px 1px 1px;
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}