#loader {
  position: absolute;
  left: 50vw;
  top: 50vh;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #35abbb;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#myDiv {
  display: none;
  background-image: url('../res/unsplash-5.jpg');
}
.body {
  background-image:url('../res/unsplash-loadBG.jpg');
    background-position: center;
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-size:cover;
    scroll-behavior: smooth;
}
@media screen and (max-width:400px) {
  .body {
      background-size:100vh 100vh;
  }
  #loader{
    left: 55vw;
  }
}

nav {
    position: sticky;
    top: 0;
    z-index: 10;
}

ul {
    display: inline-block;
    padding: 15px 0px;
    background-color: #ffffff;
    width: 100%;
    overflow: inherit;
}

ul a {
    color: black;
    text-align: center;
    font-family: -webkit-pictograph;
    padding: 10px;
    text-decoration: none;
    word-wrap: normal;
    font-family: 'Cedarville Cursive', cursive;
}

ul a:hover {
    background-color: rgb(230, 228, 228);
    border-radius: 5px;
}

.icon {
    display: flex;
    width: 35vw;
    height: 11vh;
}

@media screen and (max-width: 800px) {
    .icon {
        display: flex;
        width: 70vw;
        height: 10vh;
    }
}

div#ic {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #ffffff;
}

.motto {
    text-align: center;
    color: teal;
    background-color: #ffffff;
    font-family: 'Cedarville Cursive', cursive;
    font-size: 2vw;
}

.description p {
    padding: 4vh 15vw;
    color: black;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 30px;
    font-weight: bold;
    border-radius: 5px;
}

@media screen and (max-width:400px) {
    .description p {
        font-size: 25px;
    }
}

.poster{
    display: flex;
    overflow:hidden;
    flex-direction: row;
    animation: slide-up 4s;
    margin-top: 0%;
    background-color: #ffffff;
}

.poster img {
  width: 50vw;
  height:70vw;
}

.pos {
    display: flex;
    animation: slide-up 4s;
    margin-top: 0%;
}

@keyframes slide-up{
    from {
        margin-top: 100%;
    }

    to {
        margin-top: 0%;
    }
}

.footer {
    display: inline-block;
    position: fixed;
    left: 51%;
    transform: translateX(-50%);
    bottom: 0;
    padding: 1vh 2vw;
    background-color: rgba(255, 255, 255, 0.514);
    border-radius: 4px;
}

footer a {
    display: inline-block;
    padding: 0vh 1vw;
}

footer a img {
    width: 30px;
    border-radius: 4px;
}

footer a img:hover {
    background-color: goldenrod;
}


* {box-sizing:border-box}

.slideshow-container {
  max-width: 1000px;
  position:relative;
  z-index:0;
  margin: auto;
}


.mySlides {
  display: none;
}

.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;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.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;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


.globalBackground{
background-image: url('../res/unsplash-GB.jpg');
background-position: center;
background-attachment: scroll;
background-repeat: no-repeat;
background-size: cover;
}

.solid-grey{
  background-color: #0e0e0e;
  text-align: center;
  color: #f2f2f2;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  height: 15vh;
  width: 100%;
  font-family: -webkit-pictograph;
}

* {
  margin: 0;
  padding: 0;
}
html,body {
  height: 100%;
}
#card{
  margin-left: 20vw;
  margin-top: 0px;
  width: 60vw;
  display: flex;
  background-color: rgb(185, 210, 255);
  border-radius: 5px;
  border: 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
