body {
    font-family: 'Fira Mono', sans-serif;
    background-color: #0f172a;
    color: #e7f6ff;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    text-align: center;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a {
    color: #2b84ef;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b79aff;
}

.container {
    background: #1c2735;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 75%;
    text-align: left;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2b84ef;
    font-weight: 500;
}

input {
    width: calc(100% - 1rem);
    padding: 0.5rem;
    margin: 0.2rem 0 1rem 0;
    background-color: #e7f6ff;
    border: 1px solid #2d3540;
    border-radius: 3px;
    font-family: 'Fira Mono', sans-serif;
    font-size: 1rem;
    outline: none;
}

input:focus {
    border: 1px solid #2b84ef;
    box-shadow: 0 0 5px #2b84ef;
}

.buttonContainer {
    text-align: center;
}

button {
    background-color: #2b84ef;
    color: #0f172a;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Fira Mono', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #b79aff;
}

#resultContainer {
    background: #1c2735;
    padding: 1rem 2rem;
    margin-top: 1rem;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    min-height: 1.1rem;
    width: 75%;
    text-align: center;
    line-height: 1.3;
    transition: background-color 0.3s ease;
}

#copyButton {
    padding: 0; 
    background: none;
}

#iconCopy {
    width: 15px; 
    color: #2b84ef;
    margin-bottom: -1px;
    transition: color 0.3s ease;
}

#iconCopy:hover {
    color: #b79aff;
}

footer {
    color: #999999;
}

footer a {
    color: #999999;
    font-weight: 400;
}