body{
  background-color: black;
  background-image: url("/images/bgbg.gif");
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
  color: white;
  font-family: arial;
}

a{
  color: #9c9c9c;
}

p{
  text-shadow: 
        /* first layer at 1px */
        -1px -1px 0px #000,
         0px -1px 0px #000,
         1px -1px 0px #000,
        -1px  0px 0px #000,
         1px  0px 0px #000,
        -1px  1px 0px #000,
         0px  1px 0px #000,
         1px  1px 0px #000,
        /* second layer at 2px */
        -2px -2px 0px #000,
        -1px -2px 0px #000,
         0px -2px 0px #000,
         1px -2px 0px #000,
         2px -2px 0px #000,
         2px -1px 0px #000,
         2px  0px 0px #000,
         2px  1px 0px #000,
         2px  2px 0px #000,
         1px  2px 0px #000,
         0px  2px 0px #000,
        -1px  2px 0px #000,
        -2px  2px 0px #000,
        -2px  1px 0px #000,
        -2px  0px 0px #000,
        -2px -1px 0px #000;
  font-size: 27px;
  line-height: 32px;
}

.title{
  text-align: center;
}

.container{
  box-sizing: border-box;
  position: static;
  margin: auto;
  padding: 20px;
  text-align: center;
  width: 45vw;
  height: 97vh;
  background-color: #808080;
  background-image: url("/images/backgroundgif.gif");
  background-size: auto 97vh;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  overflow: scroll;
}

.your-container::-webkit-scrollbar {
  display: none;
}


.link img{
  box-sizing: border-box;
  width: 37vw;
  height: auto;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  transition: all 0.2s ease-in-out;
}

.link img:hover {
  transform: scale(1.05);
}
  

@supports (-ms-overflow-style: none) {
    .container {
        -ms-overflow-style: none;
    }
}

@supports (scrollbar-width: none) {
    .container {
        scrollbar-width:none ;
    }
}

@media all and (max-width: 920px) {
  body{
    background-size: auto 100vh;
  }
  .container{
    width: 95vw;
    height: 90dvh;
    height: 90vh;
    background-size: 100vw 100vh;
    overflow: scroll;
  }
  .link img{
    width: 80vw;
    height: auto;
  }
}