.content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.content p {
    color: white;
    text-align: center;
}

.welcome-text {
    font-size: 40px;
    color: white;
    text-align: center;
    margin-top: 20px;
}

.gradient-text {
    background: linear-gradient(to bottom, #04fea1, #0bd68b); 
    background-clip: text;
    color: transparent;
    font: bold;
    text-shadow: #949494;
}

.below-welcome {
    text-align: center;
    font-size: 25px;
    color: #b9b9b9;
    margin-top: 9px;
}

.below-welcome button {
    margin-top: 5px;
    appearance: none;
    background-color: transparent;
    border: 0.125em solid #1A1A1A;
    border-radius: 0.9375em;
    box-sizing: border-box;
    color: #616161;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 16px;
    line-height: normal;
    margin: 0;
    min-height: 1em;
    min-width: 0;
    outline: none;
    padding: 0.7em 2.5em;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
}

.below-welcome button:disabled {
    pointer-events: none;
}

.below-welcome button:hover {
    color: #baffe6;
    background-color: #1A1A1A;
    box-shadow: rgba(0, 5, 1, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

.below-welcome button:active {
    box-shadow: none;
    transform: translateY(0);
}

.waves-container {
    position: absolute; 
    z-index: -1;
    width: 100%;
    height: 100%;
}

.waves {
    margin-top: 63px;
    height: 110vh;
    width: 100%;
    opacity: 0.09;
    box-shadow: inset 0 0 540px #0b0b0b;
}

.cardtest {
    margin-top: 20px;
    background-color: #0f0f0f3b;
    color: white;
    width: 510px;
    height: 310px;
    border: 1px solid rgba(36, 36, 36, 0.377);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}
@media screen and (max-width: 768px) {
    .welcome-text {
        font-size: 38px;
    }
    .below-welcome {
        font-size: 21px;
    }
}
