@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");

@font-face {
    font-family: VinlandTitle;
    src: url(fonts/dirtybag.ttf);
}

@font-face {
    font-family: vinland;
    src: url(fonts/Vinland.ttf);
}

@font-face {
  font-family: visby;
  src: url(fonts/VisbyCF-ExtraBold.ttf);
}

@font-face {
  font-family: openSauce;
  src: url(/CSS/fonts/OpenSauceOne-ExtraBold.ttf);
}



html {
    height: 100%;
    overflow: hidden; 
    margin: 0;
    padding: 0;

    body {
        height: 100vh;
        margin: 0;
        overflow-y: auto; 
        -webkit-overflow-scrolling: touch; 
    }
    
    body::-webkit-scrollbar {
        width: 0px; 
    }
    
    
    body {
        scrollbar-width: none; 
    }
    
    
    body {
        -ms-overflow-style: none; 
    }
}



.title-container {
    display: flex;
    justify-content: center;

    #vinland, #saga {
        color: #ab0001;
        font-family: 'VinlandTitle', sans-serif;
        font-size: 20vh;
        margin: 0 5px; 
        margin-top: 0.1vh;
        opacity: 0;
        animation: fadeInSlideUp 2s ease-out forwards;
      }
}

#title2 {
  font-size: 6vh;
  color: rgb(0, 0, 0);
  text-align: center;
  font-family: vinland;    
  top: 105px;                 
  margin-top: 0;     
  animation: fadeInSlideUp 2s ease-out forwards;
} 

@keyframes fadeInSlideUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
} 

#watermark {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.7); 
  text-decoration: none; 
  font-family: visby;
}

#watermark:hover {
  color: black; 
}


.section1, .section2 {
    height: 100vh;
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 2em;
    padding-left: 20px;
    overflow: hidden;
    background-color: white;
  }

  .section1 {
    display: flex;
    justify-content: center; 
    align-items: center;   
    flex-direction: column;
    background-image: url('/assets/bg2.jpeg');
    background-size: 100%;
    background-position: center; 
    background-repeat: no-repeat;
    position: relative;
}

  .section2 {
    animation: fadeInSlideUp 1s ease-out forwards;
    color: black;
    justify-content: center; 
    align-items: center;  
  }

  .section3 {
    background-color: rgb(255, 255, 255);
    height: 600vh;
    display: flex;
    color: rgb(255, 255, 255);
    padding-left: 20px;
    overflow: hidden;
  }

  #Quotes.section3 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
  }
  
  #quote1, #quote2, #quote3, #quote4, #quote5, #quote6 {
    font-size: clamp(2rem, 5vw, 10vh);
    color: rgb(0, 0, 0);
    font-family: visby;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
    padding-left: 50px;
    padding-right: 50px;  
  }
  
  #quote1 {
    padding-top: 200px;
    animation: fadeInSlideUp 5s ease-out forwards;
  }
  
  #quote2 {
    padding-top: 200px;
    animation: fadeInSlideUp 7s ease-out forwards;
  }
  
  #quote3 {
    padding-top: 300px;
    animation: fadeInSlideUp 9s ease-out forwards;
  }

  #quote4 {
    padding-top: 400px;
    animation: fadeInSlideUp 11s ease-out forwards;
  }

  #quote5 {
    padding-top: 500px;
    animation: fadeInSlideUp 13s ease-out forwards;
  }
  #quote6 {
    padding-top: 400px;
    animation: fadeInSlideUp 14s ease-out forwards;
  }

  i {
    font-style: italic;
  }
  
  #quote1 {
    text-align: left; 
  }
  
  #quote2 {
    text-align: right; 
  }
  
  #quote3 {
    text-align: left; 
  }

  #quote4 {
    text-align: right; 
  }

  #quote5 {
    text-align: left; 
  }

  #quot6 {
    text-align: right; 
  }

  #Quotes h1:nth-child(odd) {
    text-align: left;
  }
  
  #Quotes h1:nth-child(even) {
    text-align: right;
  }
 
  .tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: 50%;  
  left: 100%; 
  transform: translateY(-50%); 
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltiptext img {
  width: 100%;
  height: auto;
}

.tooltip a {
  text-decoration: none; 
  color: inherit; 
}

.tooltip a:active,
.tooltip a:visited {
  color: inherit; 
}

#footer {   
    font-family: 'Montserrat', sans-serif;
    position: fixed;
    text-align: center;
    bottom: 0;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

