#url-input {
    width: 100%;

    padding: 4px 12px;
    font-size: 14px;
    color: #191919;

    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;

    outline: none;

    box-sizing: border-box;
}

#url-input::placeholder {
}

#url-input:focus {
}

#url-response {
    text-decoration: underline; 
}

#url-button {
    background: green;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 100vh;

    background: #171717;
    color: white;
}

div {
    display: flex;
    gap: 10px;
}