:root{
  --font-colour: #FFFFFF;
  --shadow-colour: #1A1A1A;
  --hereford-blue: #0301CF;
  --text-shadow-blur: 2vw;
  --text-shadow-width: 2px;
  --box-shadow-blur: 2vw;
  --box-shadow-width: 0.1vw;
}
html {
  overflow-x: hidden;
}
body{
  margin-left: 2vw;
  font-family: Cinzel;
  color: var(--font-colour);
  text-shadow: var(--text-shadow-width) var(--text-shadow-width) var(--text-shadow-blur) var(--shadow-colour), calc(var(--text-shadow-width)*-1) var(--text-shadow-width) var(--text-shadow-blur) var(--shadow-colour), calc(var(--text-shadow-width)*-1) calc(var(--text-shadow-width)*-1) var(--text-shadow-blur) var(--shadow-colour), var(--text-shadow-width) calc(var(--text-shadow-width)*-1) var(--text-shadow-blur) var(--shadow-colour);
  background-image: url("media/photos/sword-close-up-bg-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.navigation-container{
  position: fixed;
  right: 2vw;
  top: 0;
  max-width: 10vw;
  max-height: 60vw;
}
.navigation-banner{
  position: fixed;
  right:2vw;
  top:0;
  max-width: 10vw;
  z-index: 1;
}
.navigation-list{
  position: fixed;
  max-width: 15vw;
  width: 15vw;
  font-size: 2vw;
  top: 8vw;
  right: -.5vw;
  padding: 0;
  list-style-type: none;
  text-align: center;
  z-index: 2;
}
.navlink{
  font-size: 1.1vw;
  font-weight: bold;
  text-decoration: none;
  color: var(--font-colour);
  text-shadow: none;
  display: block;
  transform: scale(1);
  transition: transform 0.5s;
  line-height: 3vw;
}
.navlink:hover{
  transform: scale(1.6);
  transition: transform 0.5s;
  background-image: linear-gradient(90deg, #B78628,  #DBA514, #EEB609, #FCC201, #FFFFFF 50%);
  background-repeat: repeat;
  background-size: 200%;
  animation: LinkHighlight 1s ease forwards;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.main-title{
  font-size: 4vw;
  background-image: linear-gradient(90deg, #B78628,  #DBA514, #EEB609, #FCC201, #B78628,  #DBA514, #EEB609, #FCC201);
  background-size: 200%;
  text-shadow: none;
  background-repeat: repeat;
  animation: GoldShimmer 5s infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.titled-paragraph{
  background-color: var(--hereford-blue);
  display: inline-block;
  border-radius: 2vw;
  background-image: url("media/photos/hereford-stripe.png");
  background-size: 25%;
  background-repeat: no-repeat;
  box-shadow: var(--box-shadow-width) var(--box-shadow-width) var(--box-shadow-blur) var(--shadow-colour), calc(var(--box-shadow-width)*-1) var(--box-shadow-width) var(--box-shadow-blur) var(--shadow-colour), calc(var(--box-shadow-width)*-1) calc(var(--box-shadow-width)*-1) var(--box-shadow-blur) var(--shadow-colour), var(--box-shadow-width) calc(var(--box-shadow-width)*-1) var(--box-shadow-blur) var(--shadow-colour);
}
.paragraph-header{
  font-size: 3vw;
  margin-left: 0vw;
  margin-right: 0vw;
}
.description{
  font-size: 2vw;
  max-width: 40vw;
  margin: 0;
}
.link-in-text{
  background-image: linear-gradient(90deg, #B78628,  #DBA514, #EEB609, #FCC201, #B78628,  #DBA514, #EEB609, #FCC201);
  background-size: 200%;
  text-shadow: none;
  background-repeat: repeat;
  animation: GoldShimmer 5s infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  transform: scale(1);
  transition: transform 0.5s;
}
.gallery-container{
  max-width: 85vw;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.picture-frame{
  margin-top: 2vw;
  margin-bottom: 2vw;
  background-color: var(--hereford-blue);
  background-image: url("media/photos/hereford-stripe.png");
  display: inline-block;
  background-size: 25%;
  background-position: 0 0;
  background-repeat: no-repeat;
  border-radius: 2vw;
}
.picture{
  margin: 0.5vw;
  margin-bottom: 0;
  max-width: 100%;
  border-radius: 2vw;
}
.shameless-plug{
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  body{
    text-align: center;
    justify-content: center;
    top: 4vw;
  }
  .main-title{
    font-size: 10vw;
  }
  .navigation-banner{
    display: none;
  }
  .navigation-list{
    position: relative;
    max-width: 80vw;
    width: 80vw;
    right: 10vw;
    left: 10vw;
    top: 2vw;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
  }
  .navlink{
    font-size: 3vw;
    padding: 6vw;
    padding-bottom: 4vw;
  }
  .paragraph-header{
    font-size: 5vw;
  }
  .description{
    max-width: 80vw;
    font-size: 4vw;
    margin: auto;
  }
  .gallery-container{
    max-width: 96vw;
    justify-content: center;
  }
  .picture{
    max-width: 95vw !important;
  }
  ::-webkit-scrollbar {
    display: none;
  }
}
@font-face {
  font-family: Cinzel;
  src: url('fonts/Cinzel-Regular.ttf');
}
@keyframes GoldShimmer {
  0%{
    background-position: 111% 110%;
  }
  50%{
    background-position: 1% 0%;
  }
  100%{
    background-position: 1% 0%;
  }
}
@keyframes LinkHighlight {
  0%{
    background-position: 101% 100%;
  }
  100%{
    background-position: 1% 0%;
  }
}
::-webkit-scrollbar {
  width: 0.5vw;
}
::-webkit-scrollbar-track {
  background: var(--hereford-blue);
}
::-webkit-scrollbar-thumb {
  background: #FFFFFF;
  border-radius: 3px;
}
