@font-face {
    font-family: riicookie;
    src: url(../assets/fonts/RiiCookieL.otf);
}


body {
    font-family:  riicookie;
    background-color: #f4b2db;
    color: rgb(255, 252, 236, 0.85);;
    font-weight: lighter;
}

h2 {
  font-weight: lighter;
}

 a:link {color: rgb(255, 252, 236, 0.85)} 
 a:hover {color: rgba(255, 240, 154, 0.85)}

.jpn {
  display: none;
}

.eng {
  display: block;
}

.panel {
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-left: 10%;
  margin-right: 10%;
}

.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.panel h1 {
    text-align: center;
}

.panel p {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 22px;
  font-weight: 10;
}

.buttonarea {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.buttonarea img {
  width: 200px;
  margin-left: 15%;
  margin-right: 15%;
}

#eng_label {
  color: rgba(255, 240, 154, 0.85);;
}