@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

html, body {
    overflow-x: hidden;
    overflow-y: hidden;
}

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

h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #FFF;
    margin-bottom: 0px;
}

h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #FFF;
    margin-top: 0px;
}

.wrapper:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
  }

.wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  
  .wrapper-inner {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 2;
    margin-top: -4%;
    max-width: 90%;
    overflow: hidden;
  }

  .glass {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px;
  }

  .under-glass {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px;
    z-index: -99;
    }

  .gamerpic {
    border-radius: 50%;
    width: 150px;
    border: 4px solid white;
    padding: 5px;
  }

  .icons {
    font-size: 25px;
    color: #FFF;
  }

  .under-glass h1 {
    animation: flickerAnimation 5s ease-in-out infinite;
  }

  .under-glass h2 {
    opacity: 0;
  }

  .under-glass .gamerpic {
    opacity: 0;
  }

  .under-glass .icons {
    opacity: 0;
  }

  .icons i {
    padding: 4px;
  }

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

@keyframes flickerAnimation {
  0% { 
    opacity: 0; 
  }
  50% {
    opacity: 70%;
  }
  100% {
    opacity: 0;
  }
}