@import url("../NavBar.css");

html {
  scroll-snap-type: y mandatory;
}

body {
  background-color: black;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;

  -ms-overflow-style: none;  /* Internet Explorer 10+ */
   scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

p {
  width: 50%;
  font-size: 30px;
  font-family: Tahoma;
  text-align: center;
  color: white;
}

.navMenuBar {}

.TitleDiv {
  width: 100vw;
  height: 100vh;
  background-color: lightgray;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: intro 2s 1 ease;
}

/*Shadow style*/
.shadow {
  animation: shadowDelayAnim 4s 1;
  filter: drop-shadow(0px 0px 15px black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.shadow > p {
  color: black;
}

#MainTitle {
  width: 50%;
}

#ProjectTitle {
  width: 40%;
}

#NXT {
  background-image: linear-gradient(rgba(0, 0, 50, 0.8), rgba(0, 0, 0, 0.9)), url("../../Images/ProjectsImages/Background0000.jpg");
  background-position: center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

#WebsiteRedesign {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("../../HTML/ProjectsGallery/web redesign 3/images/backgroundImages/WechatIMG298.jpeg");
  background-position: center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}

#WebsiteRedesign > h1 {
  color: white;
  font-size: 40px;
}

#WebsiteRedesign > a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  background-color: #4640e6;
  border: solid 3px #1b195e;
  border-radius: 50px;
  padding: 20px 40px 20px 40px;
  margin-top: 20px;
}


#NightsOfTheBlueFlamedWolf {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("../../Images/ProjectsImages/Background0001.jpg");
  background-position: center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  scroll-snap-align: start;
}

#NightsOfTheBlueFlamedWolf > p {
  text-align: left;
  margin-left: 60px;
}

#NightsOfTheBlueFlamedWolf > h1 {
  color: white;
  margin-left: 60px;
}
#NightsOfTheBlueFlamedWolf > a {
  color: white;
  text-decoration: none;
  font-size: 40px;
  background-color: #4640e6;
  border: solid 3px #1b195e;
  border-radius: 50px;
  padding: 20px 40px 20px 40px;
  margin-left: 60px;
}
#NightsOfTheBlueFlamedWolf > a:hover {
  background-color: #2822d4;
}

#Yearbook {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("../../Images/ProjectsImages/Background0003.jpg");
  background-position: center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}

#Yearbook > a {
  color: white;
  text-decoration: none;
  font-size: 40px;
  background-color: #fc7600;
  border: solid 3px #cc6000;
  border-radius: 50px;
  padding: 20px 50px 20px 50px;
}

#Yearbook > a:hover {
  background-color: #ffa200;
}

#SaltyKingdom {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("../../Images/ProjectsImages/Background0002.jpg");
  background-position: center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  scroll-snap-align: start;
}

#SaltyKingdom > p {
  text-align: right;
  margin-right: 60px;
}
#SaltyKingdom > img {margin-right: 60px;}
#SaltyKingdom > a {
  margin-right: 60px;
  color: white;
  text-decoration: none;
  font-size: 40px;
  background-color: #65d7db;
  border: solid 3px #3aa7ab;
  border-radius: 50px;
  padding: 20px 50px 20px 50px;
}
#SaltyKingdom > a:hover {
  background-color: #9fe1e3;
}

@keyframes intro {
  0% {padding-top: 2000px;}
  100% {padding-top: 0;}
}
