* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main {
    height: 100vh;
    width: 100%;
    background-color: #8120d1c4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .box {
    padding: 10px 0;
    background-color: #fff;
    border-radius: 5px;
    height: 75vh;
    width: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gradient-box {
    height: 35vh;
    width: 90%;
    border-radius: 5px;
    background: linear-gradient(to left, #8120d1c4, #20a8d1c4);
}

.select-area {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 20px;
}

.select-box select {
    height: 6vh;
    width: 18vh;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.input-color {
    display: flex;
    align-items: center;
    gap: 4px;
}

.color-inputs {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.input-color .add-color {
    background-color: #8120d1c4;
    color: #fff;
    border: none;
    height: 30px;
    width: 100px;
    border-radius: 5px;
    cursor: pointer;
}

.textarea-section {
    height: 10vh;
    text-align: center;
}

.textarea-section textarea {
    height: 50px;
    width: 284px;
    resize: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

.btns {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.btns button {
    height: 6vh;
    width: 18vh;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.btns .refresh {
    background-color: #8120d1c4;
}

.btns .copy {
    background-color: #d30b86cc;
}
