@import url('https://fonts.googleapis.com/css?family=Dancing+Script&display=swap');


/**********************resets********************/

body {
  margin: 0;
  padding: 0;
  background-color: #000
}

ul {
  margin: 0;
  list-style: none;
  padding-left: 0;
}

/**********************resets end********************/

body {
  background: url('../assets/wallpaperflare.com_wallpaper_desktop.jpg');
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
  display: flex;
  overflow: hidden;
}



/**********************nav section********************/

nav {
  position: absolute;
  width: 15vw;
  margin: 0 4vw;
}

ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.companion{
  height:28vh;
  width:350px;
  margin-bottom: -10px;
  -webkit-filter: drop-shadow(5px 5px 5px  #222);
  filter: drop-shadow(5px 5px 5px  #222);
}

.tap {
  display: none;
}

.classSelect {
  height:10vh;
  margin: -6px;
  -webkit-filter: drop-shadow(5px 5px 5px  #222);
  filter: drop-shadow(5px 5px 5px  #222);
}

.classSelect:hover {
  -webkit-filter: drop-shadow(0px 0px 6px  gold);
  filter: drop-shadow(0px 0px 6px  gold);
}

.classSelect:active {
  -webkit-filter: drop-shadow(0px 0px 8px  orange);
  filter: drop-shadow(0px 0px 8px  orange);
}


/**********************scroll ********************/

main {
  background-image: url('../assets/15137538271897643057blank-scroll-wallpaper.hi_scrollonly.png');
  background-size: 46vw 95vh;
  height: 95vh;
  width: 46vw;
  margin: 5vh auto 15vh auto;
}

h1{
  font-size: 4vw;
}

h3 {
  margin-bottom: 0;
}

/**********************artical section what is writen on the scroll********************/

/* #title {
  text-align: center;
  margin-top: 150px;
} */

article {
  font-family: 'Dancing Script', cursive;
  height: 64vh;
  width: 32vw;
  margin: 15vh auto;
  font-size: larger;
  overflow: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none; /* used to remove scrollbar in IE 11 */
  scrollbar-width: none; /* used to remove scrollbar in Firefox 64 */
}

/* removal of scroll bar to make it look like more like the text is writen on the scroll */
article::-webkit-scrollbar {
  display: none;
}

.emblem {
  float: right;
  margin: 50px 30px;
}

/**********************For Mobile********************/
@media only screen and (max-width: 768px) {
  body {
    flex-direction: column;
    align-items: center;
  }
  
  nav {
    margin-top: -45px;
  }

  .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .companion{
    height:170px;
    width:300px;
    margin-bottom: -10px;
   
  }

  .tap {
    display: block;
    position: absolute;
    margin-top: 128px;
    background-color: rgba(192, 192, 192, 0.5);
    border-radius: 20px;
    padding: 2px;
    width: 150px;
    text-align: center;
  }
  
  .classSelect {
    display: none;
  }

  

  main {
    background-size: 98vw 78vh;
    height: 78vh;
    width: 98vw;
    margin: 80px auto 0 auto;
  }

  article {
    height: 48vh;
    width: 68vw;
    margin: 15vh auto;
    font-size: small;
  }
  .emblem {
    height: 15vh;
    width: 20vw;
    margin: -10px 0px; 
  }
}