@import url('https://fonts.googleapis.com/css2?family=Sen&display=swap');

body {
  background: url(images/back.png) no-repeat center center;
  box-sizing: border-box;
  font-family: 'Sen', sans-serif;
  color: #fff;
  background-color: #222;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden; /* prevent scrolling */
}

@keyframes gradient {
  from {
    background-position: 0% center;
  }

  to {
    background-position: 200% center;
  }
}

.main {
  z-index: 100;
  text-align: center;
  text-decoration: none;
  color: white;
  height: auto;
  min-height: 500px;
  width: max-content;
  min-width: 450px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.37);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.pfp {
  transform: translateY(30px);
  border-radius: 10px;
  width: 120px;
  height: 120px;
}

.mainT {
  transform: translateY(-3px);
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  filter: drop-shadow(0 0 40px rgb(62, 104, 194));
  background: linear-gradient(to left, rgb(62, 104, 194), rgb(97, 178, 204), rgb(108, 198, 94), rgb(62, 104, 194));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 5s linear infinite;
  transition: 0.3s ease;
}

.texts {
  transform: translateY(-35px);
  padding-left: 20px;
  padding-right: 20px;
  transition: 0.3s ease;
}

.status {
  font-size: 1.1rem;
  color: #e0e0e0;
}

.line {
  color: #3b3b3b;
  transform: translateY(10px);
}

.stamp {
  transform: translateY(10px);
  font-size: 14px;
  color: #bbbbbb;
}

@media only screen and (max-width: 650px) { /* styles for screens narrower than 600px */
    .main {
      height: 400px;
      width: 250px;
    }
    
    .pfp {
      width: 80px;
      height: 80px;
      transform: translateY(5px);
    }
    
    .mainT {
      font-size: 2rem;
    }
    
    .texts {
      transform: translateY(-25px);
    }
    
    .line {
      transform: translateY(5px);
    }
    
    .stamp {
      transform: translateY(5px);
      font-size: 12px;
    }
}