@font-face {
  font-family: encode;
  src: url("/resources/fonts/EncodeSans-VariableFont_wdth\,wght.ttf");
}


body {
 /* background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;*/

  background-color: black;
  color: white;
  font-family: encode;
  margin: 0;
}

html {
  scrollbar-gutter: stable;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}




#maintitle-box{
  height: 100%;
  width: 100%;
  margin:0;
  background: linear-gradient(-45deg, #000000, #000333, #19003c, #38003e);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  border-radius: 20px;
}

#maintitle-box p{
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 10px;
  text-align: center;
}
#maintitle-cursor{
  width: 0.5vw;
  height: min(10vw, 15vh);
  display: inline-block;
  background-color: white;
  margin-left: 6.7px;
}

#maintitle-abigboxforron{
  height: 100vh;
  width: 100vw;
  padding:  10px;
  box-sizing: border-box;
}

#maintitle-pluscursor{
  font-size: min(10vw, 15vh);
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  display: inline-block;
  text-align: center;
  margin:0;
  padding: 0 20px 0 20px;
  box-sizing: border-box;
  width: 100%;

}


.generic-box{
  margin: 10px;
  margin-bottom: 40px;
  background-color: rgba(67,67,67,0.3);
  padding: 10px;
  border-radius: 20px;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-width: 1px;
  border-style: solid;
}
.generic-box h2{
  margin-left: 75px;
  font-size: 35pt;
  width: fit-content;
}

#bg{
  position: fixed;
  top:0;
  left:0;
  height: 100%;
  width: 100%;
  z-index: -100;
  filter:blur(25px)
}

#aboutme-flexbox{
  display: grid;
  grid-template-columns: 2fr 1fr;;

}
#aboutme-flexbox div{
  padding: 30px;
}

p{
  font-size: 17pt;
}

#blog h2{
  display: inline-block;
}
.coming-soon-banner{
  margin: 100px 0 100px 0;
  text-align: center;
  font-size: 25pt;
}

.social-box{
  display: inline-flex;
  margin: 10px;
  background-color: rgba(67,67,67,0.3);
  padding: 10px;
  border-radius: 20px;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-width: 1px;
  border-style: solid;
  color: white;
  text-decoration: none;
  flex: auto;
  transition-duration: 200ms;
}

.social-box:hover{
  transform: scale(1.1);
}

.social-box h3{
  margin: 0;
}
.social-box::before{
  
  display: inline-block;
  width: 50px;

  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  margin-right: 10px;

}

#socials{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#version{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
#version small{
  width: fit-content;
}


.email::before{
  background-image: url("/resources/img/social/email.png"); 
}
.youtube::before{
  background-image: url("/resources/img/social/youtube.png");  
}
.discord::before{
  background-image: url("/resources/img/social/discord.png"); 
}
.instagram::before{
  background-image: url("/resources/img/social/instagram.png"); 
}
.kilonova::before{
  background-image: url("/resources/img/social/kilonova.ico"); 
}
.codeforces::before{
  background-image: url("/resources/img/social/stopthewar.svg"); 
}
.github::before{
  background-image: url("/resources/img/social/github.png"); 
}
.cyberedu::before{
  background-image: url("/resources/img/social/cyberedu.png"); 
}
.reddit::before{
  background-image: url("/resources/img/social/reddit.png"); 
}
.pbinfo::before{
  background-image: url("/resources/img/social/pbinfo.png"); 
}
.lichess::before{
  background-image: url("/resources/img/social/lichess.png"); 
}
.roblox::before{
  background-image: url("/resources/img/social/roblox.png"); 
}

a{
  color: aqua;
  transition-duration: 200ms;
}
a:hover{
  color:aquamarine
}
@media (max-width: 719px) {
  #aboutme-flexbox{
    display: flex;
    flex-direction: column;
    
  }
}
@media (max-width: 400px){
  .generic-box h2{
    margin: auto;
    text-align: center;
    display: block;
  }
  .generic-box small{
    display: block;
  }
  #blog h2{
    display: block;
    margin-bottom: 10px;
  }
}