html, body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    background-color: #000;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    scrollbar-width: none;
}
    html::-webkit-scrollbar, body::-webkit-scrollbar {
        display: none;
    }

.starry-background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: white;
    opacity: 0.8;
    animation: twinkle 0.5s infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #D3D3D3;
    padding: 10px;
    min-width: 150px;
    max-width: 90vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    font-family: "Open Sans", sans-serif;
    opacity: 0;
    animation: fadeIn 1.7s ease-in-out forwards;
    will-change: opacity;
    word-wrap: break-word;
    overflow: auto;
}

    .content a {
        display: block;
        color: #333;
        text-align: center;
        padding: 10px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: background-color 0.3s ease-in-out;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
        text-align: center;
        border-radius: 10px;
    }

        .content a:visited,
        .content a:active {
            text-decoration: none;
        }

        .content a:hover {
            text-decoration: none;
            background-color: #BEBEBE;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



h1 {
    font-size: 2rem;
    text-align: center;
    color: #333;
    margin: 5px 0 0 0;
    padding: 0;
}

p {
    text-align: center;
    max-width: 600px;
    margin: auto;
    color: #333;
}

hr {
    border: 0;
    height: 2px;
    background: #555;
    margin: 20px auto;
    width: 80%;
}

.corner-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;

}

.button {
    background-color: #000000;
    color: white;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

    .button:hover {
        background-color: #000000;
    }

.text {
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: none;
}
