@font-face {
    font-family: var(--ff-open-sans);
    font-size: 10px;
    scroll-behavior: smooth;
    src: url(--ff-open-sans);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--ff-open-sans);
}
a{
    color: #fff;
}
body{
    background-image: linear-gradient(rgba(255, 125, 241, 0.2), rgba(133, 133, 133, 0.2)), url('https://assets.altarofgaming.com/wp-content/uploads/2022/07/bsl-shaders-best-minecraft-shaders.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.container{
    width: 1fr;
    height: auto;
    margin: 5vh;
    margin: 100px 50px 0px 50px;
    color: white;
}



.content{
    display: flex;
    justify-content: space-between;
    height: 25vw;
    width: 100%;
    margin: 5vh 0vh;
}
.hold{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title{
    font-size: 2.2vw;
    height: auto;
    width: 100%;
    padding: 1vh 2vh;
}
.read{
    text-align: center;
}
.text{
    font-size: 1.9vw;
    height: auto;
    margin: 1vh 2vh;
    font-style: italic;
    font-weight: normal;
}
.content img{
    width: 100%;
    border-radius: 25px;
}
nav{
    background-color: #101010;
    width: 1fr;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    z-index: 1;

}
nav img{
    height: 5vw;
}
nav ul li {
    list-style-type: none;
    display: inline-block;
    padding: 1vw 1vw;
}
nav ul li button{
    font-size: 1vw;
    color: white;
    transition: .3s;
    text-decoration: none;
    font-weight: bold;
    padding: 1vw;
    height: 3vw;
    width: auto;
    border-radius: 2vw;
    background: linear-gradient(35deg, #3ed610, #1bd40a);

}
nav ul li button:hover{
    background: #303030;
    transition: .3s;
    transform: scale(1.2,1.2);
    cursor: pointer;
}
nav i{
    font-size: 3vw;
    color: #1ef12f;
    transition: 0.3s;
}
nav i:hover{
    transition: 0.3s;
    transform: scale(1.2,1.2);
    color: #1b8f17b9;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
footer{
    text-align: center;
    width: 1fr;
    color: #fff;
    font-size: 1.5vw;
    background: linear-gradient(35deg, #64f521, #1ef11e);
    padding: 1vw;
}
.sticky2 {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ripple div {
    position: absolute;
    border: 4px solid rgb(51, 224, 17);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }
  .loader {
    width:100vw;
    height:100vh;
    position:absolute;
    top:0;
    left:0;
    position:fixed;
    z-index:999999;
    display: none;
    align-items:center;
    align-content:center;
    justify-content:center;
    -webkit-backdrop-filter:blur(5px);
            backdrop-filter:blur(5px);
    background:rgba(0,0,0,.3);
  }
  