#center{
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  width:99%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

*{
  font-family: sans-serif
}

body {
  background: url('/static/img/bg-landing.png');
  background-position:center top;
  margin:0;
  padding:0;
  color: white;
}

a{
  color: white;
}

hr{
  color: white;
}

img{
  width: 20%;
  animation: fadeIn ease 3s;
}

.replit-auth-button{
  background-color: #1f2232;
  color:#cbcfd4;
  font-family: 'IBM Plex Sans',sans-serif;
  padding: 6px;
  border-style: solid;
  border-radius: 6px;
}
.replit-auth-button:before{
  font-family: "Font Awesome 6 Free";
   content: "\52";
  padding-right: 6px;
   font-weight: 900;
}
.replit-auth-button:hover{
  background-color: #151723;
}

.dbutton{
  background-color: #5865F2;
  color:#F6F6F6;
  font-family: 'IBM Plex Sans',sans-serif;
  padding: 6px;
  border-style: solid;
  border-radius: 6px;
}
.dbutton:hover{
  background-color: #404EED;
}
.dbutton:before{
  font-family: "Font Awesome 6 Brands";
  content: '\f392';
  padding-right: 6px;
  font-weight: 900;
}

#footer {   
  position:fixed;
  left:0px;
  bottom:12px;
  height:30px;
  width:100%;
  text-align:center;
  font-family: 'IBM Plex Sans',sans-serif;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@media only screen and (max-width: 600px) {
  img{
    width: 70%;
  }
}

@media only screen and (max-width: 1000px) {
  img{
    width: 50%;
  }
}