main {
    margin: auto;
    width: min-content;
    text-align: center;
}

.style {
    font-family: 'Arimo', sans-serif;
    padding: 12px;
    border: 1px solid #ccc4d8;
    border-radius: 8px;
    margin-bottom: 15px;
    width: 65vmin;
}

input,
textarea {
    outline: none;
}

input:focus,
textarea:focus {
    border-color: #7c689b;
}

input {
    font-size: 20px;
    text-align: center;
}

textarea {
    font-size: 15px;
}

button {
    background-color: #7c689b;
    color: #ffffff;
    font-size: 18px;
    padding: 12px 24px;
    border: 0;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 15px;
}

button:hover {
    background-color: #63537d;
}

#copyBox {
    height: 26px;
    direction: ltr;
    overflow: hidden;
}

.copyBtn {
    background-color: rgba(124, 104, 155, 0.3);
    border-radius: 5px;
    padding: 10px;
    color: #060606;
    position: relative;
    top: -60px;
    left: 30vmin;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 150ms;
}

.copyBtn:hover {
    background-color: rgba(124, 104, 155, 0.45);
}

.copied {
    background-color: rgba(124, 104, 155, 0.45);
}