.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.content-container .textarea-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textarea-container p {
    justify-content: center;
    align-items: center;
    color: #ff3838;
    font-weight: bold;
    font-size: 25px;
    padding: 10px;
}

.textarea-container {
    width: 50vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

textarea {
    width: 90%;
    height: 75vh;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ff3838;
    background: no-repeat;
    background-position: center;
    background-image: url("../img/logo1.png");
    background-size: 400px;
    border-radius: 5px;
    white-space: pre;
    overflow: hidden;
    color: rgb(214, 213, 213);
    font-size: medium;
    resize: none;
}

textarea::placeholder {
    display: flex;
    color: #08375f;
    font-size: 20px;
    font-style: bold;
    text-align: left;
    align-items: top;
}

textarea::selection {
    background-color: transparent;
}

textarea:focus {
    outline: none;
}

#convert {
    padding: 10px;
    margin: 10px;
    background-color: #ff3838;
}

.buttons {
    display: flex;
    flex-direction: column;
}

.buttons div {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 30px;
}

.buttons div div {
    display: flex;
    flex-direction: column;
    justify-content: top;
    margin-top: 5px;
}

.buttons div div p {
    display: flex;
    flex-direction: column;
    color: #ff3838;
    font-size: 20px;
    font-style: bold;
    text-align: left;
    align-items: right;
    height: 26px;
    padding-right: 10px;
    margin-top: 5px;
}

.toggle-container {
    position: relative;
    width: 54px;
    height: 26px;
    margin-top: 5px;
}

.toggle-container input {
    display: none;
}

.toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-label::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 5px;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-container input:checked + .toggle-label {
    background-color: #ff3838;
}

.toggle-container input:not(:checked) + .toggle-label {
    background-color: #e7a33c;
}

.toggle-container input:checked + .toggle-label::before {
    transform: translateX(24px);
}

.toggle-container input:not(:checked) + .toggle-label::before {
    transform: translateX(0);
}
