* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.container {
    background: white;
    width: 800px;
    max-width: 90vw;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}
.linksCode {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

    padding: 18px 35px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.85),
        rgba(255,255,255,0.45)
    );

   border: 2px solid rgba(80, 140, 255, 0.5);

    color: #111;
    text-decoration: none;

    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.8);

    cursor: pointer;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.linksCode:hover {
    transform: translateY(-6px) scale(1.03);

    background: linear-gradient(
        135deg,
        rgba(255,255,255,1),
        rgba(230,240,255,0.8)
    );

    box-shadow:
        0 18px 35px rgba(0,0,0,0.2),
        0 0 25px rgba(80,140,255,0.35);
}

.linksCode:active {
    transform: translateY(-2px) scale(0.98);
}

h1 {
    margin-bottom: 25px;
    color: #333;
}

select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid #667eea;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    background: #f8f8ff;
}

select:hover {
    background: #eeeeff;
}

#textDisplay {
    margin-top: 25px;
    padding: 20px;
    height: 500px;
    width: 100%;
    background: #f4f4f4;
    border-radius: 15px;
    text-align: left;
    white-space: pre-wrap;
    overflow: auto;
    color: #333;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}