
/* This is the main page styling */

.grad {
    background-image: linear-gradient(to bottom left,#0d2b45, #8d697a);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

img {
    width: 50%;
    height: auto;
}

.img-title {
    width: 38%;
    height: auto;
}

.content {
    color: #203c56;
    height: 60%;
    width: 45%;
    background-color: hwb(32 64% 0% / 0.685);
    border-radius: 4px;
    filter: drop-shadow(-5px 5px 0px rgba(0, 0, 0, 25%));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

/*
.content-gallery {
    color: #203c56;
    height: 100%;
    width: 75%;
    background-color: hwb(32 64% 0% / 0.685);
    border-radius: 4px;
    filter: drop-shadow(-5px 5px 0px rgba(0, 0, 0, 25%));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}
Maybe not used anymore */

.content-title {
    color: #203c56;
    height: 65%;
    width: 45%;
    filter: drop-shadow(-5px 5px 0px rgba(0, 0, 0, 25%));
    position: absolute;
    left: 65%;
    transform: translate(-50%);
    z-index: 2;
}

.content-within {
text-align: center;
position: absolute;
left: 50%;
transform: translate(-50%);
z-index: 15;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    z-index: 10;
}


.button1 {
    background-color: #d08159;
    border-radius: 5%;
    font-size: larger;
    color: #203c56;
}

/* Gallery Styling */

* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
  width:60%;
  left:50%;
  transform: translate(-50%);
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}