body, html{
    height:100%
}

#bg {
    background-image: url(bg.png);
    filter: blur(2px) saturate(20%) brightness(60%) contrast(80%);
    transform:scale(1.05);
    overflow:clip;
    /* -webkit-filter: blur(8px); */
    height:100%;
    background-size:cover;
    z-index: -2;
    position:fixed;
    inset:0;
}

#headerContainer {
    display: flex;
    justify-content: center;
    overflow:clip;
    color:white;
}
#header {
    display:flex;
    flex-wrap: wrap;
    position:relative;
    padding: 32px 32px 32px 32px;
    margin: 32px 32px 32px 32px;
    border: 1px solid;
    background-color: #080809a0;
    border-color: #707070;
    height:100px;
    max-width:100%;
    min-width: 900px;
    /* place-items:center; */
    justify-content: center;
    /* text-align: center; */
    backdrop-filter: blur(10px) saturate(60%);
    overflow:clip;
}






#main {
    display:flex;
    flex-wrap: wrap;
    position:relative;
    padding: 32px 32px 32px 32px;
    border: 1px solid;
    background-color: #080809a0;
    border-color: #707070;
    min-height:800px;
    /* max-width:55%; */
    width: 1200px;
    min-width: 700px;
    place-items:top;
    backdrop-filter: blur(10px) saturate(60%);
    overflow:clip;
}
#contentContainer {
    padding: 32px 0px 32px 0px;
    display: flex;
    justify-content: center;
    overflow:clip;
    /* align-items: center; */
}

.art {
    filter: brightness(75%);
    /* margin-bottom: 32px;
    margin-right: 32px; */
    /* height:auto; */
    max-width:180px;
    max-height:180px;
    z-index: 2;
    transition: .3s;
}
.art:hover {
    filter:brightness(100%);
    transform: scale(1.10);
}
.artContainer {
    width: 180px;
    height: 180px;
    display: flex;
    place-items: center;
    justify-content: center;
}

.noise-texture::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    filter: url(#noise-texture);
    pointer-events: none;
    overflow:clip;
}
.divider {
    position: absolute;
    bottom: -5%;
    width: 120%;
    height: 20%;
    opacity: 0.1;
}







.realFake {
    inset:0;
    padding: 8px;
    margin-top: 32px;
    margin-bottom: 32px;
    height: 90%;
    width:10%;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    place-items: center;
    justify-content: center;
}
#fake1 {
    z-index: 11;
    margin-left: 32px;
    position:fixed;
}
#fake2Container{
    inset:0;
    width:100%;
    position:fixed;
    height:100%;
}
#fake2 {
    float:right;
    margin-right:32px;
}
.sideLink {
    height:100%;
    width:100%;
    background-size: cover;
    /* animation-name: myAnimation; */
    filter:brightness(85%);
    transition: .3s;
}
#cs2 {
    height:45%;
    background-image: url("widgets/cs2_fake.png");
    background-size: cover;
    animation-name: animR;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}
#discord {
    height: 55%;
    background-image: url("widgets/discord_fake.jpg");
    background-size: cover;
    animation-name: animR;
    animation-delay: 5s;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}
#osu {
    height:20%;
    background-image: url("widgets/osu_fake.png");
    background-size: cover;
    /* background-position-x: 100%;
    animation-name: animR;
    animation-delay: 1s;
    animation-duration: 13s;
    animation-iteration-count: infinite; */
}
#iwantyou {
    height:30%;
    background-image: url("widgets/iwantyou.jpg");
    background-size: cover;
    background-position-x: 100%;
    animation-name: animL;
    animation-delay: 2s;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}
#artFake {
    height:50%;
    background-image: url("widgets/iwantyou.jpg");
    background-size: cover;
    /* background-position-x: 100%; */
    animation-name: animR;
    animation-delay: 4s;
    animation-duration: 16s;
    animation-iteration-count: infinite;
}

#toggleAd{
    position: fixed;
    bottom: 0;
    right: 0;
    height:40px;
    width:300px;
    margin-bottom: 32px;
    margin-right: 32px;
    /* background-image: url('widgets/disable_ads.gif');
    background-size: cover; */
}
#toggleAd:active{
    transform:scale(0.96);
    filter: brightness(90%);
    transition: .05s;
}
#toggleAdImg {
    height:100%;
    width:100%;
}
.sideLink:hover{
    filter:brightness(100%);
}
@keyframes animR {
  0%   {background-position-x: 0px;}
  25%  {background-position-x: 100%;}
  50%  {background-position-x: 100%;}
  100% {background-position-x: 0px;}
}
@keyframes animL {
  0%   {background-position-x: 100%;}
  25%  {background-position-x: 0px;}
  50%  {background-position-x: 0px;}
  100% {background-position-x: 100%;}
}

 @media (max-width: 1720px) {
  .realFake {
    display: none;
  }
  #toggleAd{
    display: none;
  }
}