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

h1 {
    color: #345481;
    font-weight: 600;
    font-size: 3rem;
    opacity: 0.8;
}

h2,
p {
    color: #3d6091;
    font-weight: 600;
    opacity: 0.8;
}

h3 {
    color: #334f77;
    font-weight: 600;
    opacity: 0.8;
}

main {
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    background: linear-gradient(to right top, #74f8e0, #77e4f5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass {
    background: white;
    min-height: 80vh;
    width: 68%;
    background: linear-gradient( to right bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
    border-radius: 1rem;
    z-index: 2;
    backdrop-filter: blur(1rem);
    display: flex;
}

.circle1,
.circle2 {
    background: linear-gradient( to right bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    height: 10rem;
    width: 10rem;
    position: absolute;
    z-index: 1;
}

.circle1 {
    top: 4%;
    left: 6%;
}

.circle2 {
    bottom: 4%;
    right: 4%;
}

.dashboard {
    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, 0.9), rgba(255, 255, 255, 0.1));
    border-radius: 1rem;
    flex: 1;
}

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

.link h2 {
    padding: 0rem 2rem;
}

.pro {
    background: linear-gradient(to right top, #74f8e0, #77e4f5);
    border-radius: 2rem;
    color: white;
    padding: 1rem;
    position: relative;
}

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

.pro img {
    position: absolute;
    top: -10%;
    right: 10%;
    height: 100%;
}

.games {
    flex: 2;
}

.status {
    margin-bottom: 2rem;
}

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

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

.card {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to left top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
    border-radius: 1rem;
    margin: 1rem 0rem;
    padding: 1rem;
    box-shadow: 6px 6px 20px rgba(122, 122, 122, 0.4);
}

.progress {
    background: linear-gradient(to right top, #74f8e0, #77e4f5);
    width: 100%;
    height: 25%;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.progress::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background: rgba(236, 236, 236, 1);
    position: absolute;
    left: 60%;
}

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

.percentage {
    font-weight: bold;
    background: linear-gradient(to right top, #59c7b3, #59c6d6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}