*{
    /* The CSS box-sizing property allows us to include the padding and border in an element's total width and height.*/
    padding: 0;
    margin: 0;
    font-family: 'jost';
    text-decoration: none;
}
body{
    /*Setting of the background colour as well as the margin and font colour*/
    background-color:  #262e35;
    margin: 0;
    color: #F2E8CF;
    text-align: center;
    

}
/*banner*/
.banner{
    width: 100%;
    height: 5vh;
    background-color: #080e1d;

    display: table;
    border-bottom-style: solid; 
    border-color: #F2E8CF;
    border-width: 1px;
    margin:auto;
    position: sticky;

}
.banner h1{
    width: 5%;
    position: left;
    text-align: left;
    padding-left: 1%;
    display: table-cell;
    color: #F2E8CF;
    font-size: 250%;
    font-family: 'caveat', cursive;
    cursor: pointer;    



}
.navbar{
    width: 85%;
    margin: auto;
    padding: 1vh 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.navbar a{
    text-decoration: none;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 5px;
    position: relative;

}
.navbar ul li:hover{
    border-bottom: 1px solid #F2E8CF;

    transition: 0.5s;
}
.navbar ul li a{
    text-decoration: none;
    color: #F2E8CF;
    font-size: 120%;
}
.navbar ul li a:hover{
    color: #BC4749;
    
}
.navbar ul li::after{
    content: '';
    height: 1px;
    width: 0;
    background: #F2E8CF;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s;
}
.navbar ul li:hover::after{
    width: 100%;

    background-color: #F2E8CF;
    position: sticky;


}

@keyframes blinking {
    0% {
      opacity: 0;
  
    }
    100% {
      background-color: #F2E8CF;
      opacity: 100;
  
    }
  }
  #blink {
      margin: auto;

      width: clamp(12rem, 30vw, 20rem);
      height: clamp(0.2em, 0.3vw, 0.4rem);
      animation: blinking 2s infinite;
}
/*title*/
.content h1{
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: 5vh;
    position: relative;
    display: inline-flex;
    width: max-content;
    letter-spacing: 2px;

}
.subtitle{
    font-size: clamp(1rem, 2vw, 2rem);
    opacity: 75;
    transform: translateY(1rem);
    font-family:'Lucida Sans',  sans-serif;
}
body {
    margin: 0;
    padding: 0;
}
* {box-sizing:border-box}

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

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

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 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;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev {
	left: 0 !important;
}

/* 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);
}

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

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

/* 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}
}
