* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    color: #426696;
    font-weight: 700;
    font-size: 3rem;
    opacity: 0.8;
}

h2,
p {
    color: #658ec6;
    font-weight: 500;
    opacity: 0.8;
}

h3 {
    color: #426696;
    font-weight: 700;
    opacity: 0.8;
}



main {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass {
    background: white;
    margin: 2rem 0rem;  /* オリジナル */
    min-height: 80vh;
    width: 80%; /* オリジナル60%⇒80%へ変更 */
    background: linear-gradient(
        to right bottom, 
        rgba(255, 255, 255, 0.7), 
        rgba(255, 255, 255, 0.3)
    );
    border-radius: 2rem;
    z-index: 2;
    backdrop-filter: blur(2rem);
    display: flex;
}

.circle1, .circle2 {
    /* background: rgb(10, 9, 9); */
    background: linear-gradient(
        to right bottom, 
        rgba(255, 255, 255, 1), 
        rgba(255, 255, 255, 0.5)
    );
    height: 20rem;
    width: 20rem;
    position: absolute;
    border-radius: 50%;
}

.circle1 {
    top: 3%;
    right: 2%;
}

.circle2 {
    bottom: 3%;
    left: 2%;
}

/* オリジナル */
.user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* オリジナル */
.card-img {
    border-radius: 0.75rem;
    width: 90px;
    height: 70px;
}

.dashboard {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    background: linear-gradient(
        to right bottom, 
        rgba(255, 255, 255, 1), 
        rgba(255, 255, 255, 0.5)
    );
    border-radius: 2rem;
    padding: 0.5rem 0.5rem;
}

.link {
    display: flex;
    margin: 2rem 0rem;
    padding: 1rem;
    align-items: center;
}
.link h2 {
    padding: 0rem 2rem;
}

/* オリジナル */
.link i {
    color: #658ec6;
    font-size: 2rem;
    opacity: 0.8;
}

.games {
    flex: 2;
}

.pro {
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    border-radius: 2rem;
    color: white;
    padding: 1rem;
    position: relative;
}

.pro i {
    position: absolute;
    top: 10%;
    right: 10%;
}

.pro h2 {
    width: 40%;
    color: white;
    font-weight: 600;
}

/* GAMES */
.status {
    margin-bottom: 3rem;
}

.status input {
    background: linear-gradient(
        to right bottom, 
        rgba(255, 255, 255, 0.7), 
        rgba(255, 255, 255, 0.3)
    );
    border: none;
    width: 50%;
    padding: 0.5rem;
    border-radius: 2rem;
}

.games {
    margin: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.card {
    display: flex;
    justify-content: space-between;

    background: linear-gradient(
        to left top, 
        rgba(255, 255, 255, 0.8), 
        rgba(255, 255, 255, 0.5)
    );
    border-radius: 1rem;
    margin: 2rem 0rem;
    padding: 2rem;
    box-shadow: 6px 6px 20px rgba(122, 122, 122, 0.2);
}

.progress {
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    width: 100%;
    height: 25%;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.progress::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(236, 236, 236);
    position: absolute;
    left: 60%;
}

.card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Tailwindであれば下記で可能
<span class="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
    Hello world
</span> */
.percentage {
    font-weight: bold;
    /* color: linear-gradient(to right top, #65dfc9, #6cdbeb); */
    background: linear-gradient(to right top, #65dfc9, #6cdbeb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}