* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: arial;
    border-style: solid;
    border-width: 1px;
    border-color: black;
}

html,
body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    background: linear-gradient(to bottom, rgb(186, 243, 186), rgb(45, 241, 45));
    border: none;
}


.title {
    font-family: arial;
    font-size: 45px;
    color: green;
    text-align: center;
    user-select: none;
    pointer-events: none;
    margin: none;
    padding-top: 20px;
    padding-bottom: 10px;
    border: none;
}

textarea:focus {
    outline: none;
}

#input,
#result {
    position: absolute;
    top: 30px;
    left: 0px;
    width: 100%;
    height: calc(100% - 30px);
    resize: none;
    font-family: arial;
    font-size: 20px;
    padding: 5px;
    background-color: rgb(226, 250, 226);
    border-color: green;
}

.InputOutputWrapper {
    margin: 0 auto;
    width: calc(50% - 40px);
    height: calc(50% - 180px);
    position: relative;
    border: none;
}

.convertButtonWrapper {
    width: calc(50% - 40px);
    margin: 0 auto;
    margin-top: 18px;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    border: none;
}

#convert {
    width: 100px;
    height: 25px;
    cursor: pointer;
    font-family: arial;
    font-size: 16px;
    background-color: rgb(85, 212, 35);
    color: white;
    border-color: green;
}

#convert:hover {
    background-color: rgb(116, 209, 79);
}

#convert:active {
    background-color: rgb(129, 189, 105);
}

.copyButtons {
    width: 100px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    cursor: pointer;
    border-bottom: none;
    border-color: green;
    color: white;
    background-color: rgb(66, 180, 66);
}

.copyButtons:hover {
    background-color: rgb(85, 192, 85);
}

.copyButtons:active {
    background-color: rgb(94, 175, 94);
}