body{
      background-color: #EBEBEB;
}

.header{
    background-color: rgba(255, 255, 255, 1);
}

.info-viewport{
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('info-bg.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.info-container{
  width: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 24px 16px;
  flex-direction: column;
  gap: 56px;
  background-color: white;
  z-index: 10;
}

.pfp{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  overflow: hidden;
}

.pfp-text{
  display: flex;
  padding: 6px 0;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  border-bottom: 1px dashed #000;
}

.info-content{
  width: 390px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding: 0 0 30px 0;
}

.info-content .headline{
  text-align: center;
}

.info-container .chinese{
  letter-spacing: 42px;
  line-height: 24px;
}

.info-content .body{
  line-height: 20px;
}

.info-links{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0px 8px;
}

.info-links 
.clickable-text{
    padding: 4px 8px;
    color: black;
    text-decoration: none;
}

.info-links
.clickable-text:hover{
    background-color: white;
    padding: 3px 7px;
    border: 1px dashed #000;
    cursor:pointer;
}

.fun-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.fun-cell {
    position: absolute;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 1px dotted white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Heap';
    font-size: 10px;
    color: white;
}

@media (max-width: 600px) {
    .info-container {
        width: 100%;
        height: 100%;
          padding: 24px 24px 36px 24px;
            gap: 32px;
    }

    .info-content{
      width: 100%;
    }

}
