body {
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to right, #00ccff, #0c7385);
}

.content {
    background-color: cyan;
    padding: 20px;
    width: 550px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.3);
}

.input {
    border: 2px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    height: 50px;
    width: 500px;
    padding: 10px 20px;
}

input {
    border: none;
    background: transparent;
    font-size: 30px;
    outline: none;
    color: rgb(1, 0, 34);
}

input::placeholder {
    font-size: 18px;
    letter-spacing: 0;
}

img {
    cursor: pointer;
}

img:active {
    transform: scale(0.95);
}

button {
    background-color: rgba(0, 37, 71,0.7);
    height: 50px;
    width: 200px;
    border: none;
    border-radius: 5px;
    margin: 10px 0;
    padding: 10px;
    font-size: 20px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.3);
}

button:hover {
    background-color: rgba(0, 37, 71,0.9);
}

button:active {
    transform: scale(0.95);
}

.copied {
    background-color: cyan;
    position: fixed;
    width: 300px;
    height: 50px;
    float: right;
    bottom: 20px;
    right: 20px;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.4s;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.3);
}

.copied.active {
    right: -300px;
}

nav {
    background-color: cyan;
    font-size: 10px;
    float: left;
    top: 0px;
    width: 100%;
    left: 0px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.3);
}