@import url('https://fonts.googleapis.com/css2?family=Hepta+Slab:wght@1..900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
}

:root {
    --background: #171717;
    --main-card: #1F1F2E;
    --second-card: #33334C;
    --top-light: #3E3E5B;
    --text: #DADADA;
    --secondary-text: #B3B3B3;
}

svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--background);
}

.container {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

header {
    h1 {
        color: var(--text);
    }
    h4 {
        color: var(--secondary-text);
        font-family: "Hepta Slab", serif;
        font-weight: 300;
        margin-bottom: 25px;
        font-size: 0.8em;
    }
}

.translator, .caps-fixer {
    background-color: var(--main-card);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 5px;
    border-top: var(--top-light) 1px solid;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
    .case-option {
        display: flex;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
        color: var(--text);
        font-size: 0.8em;
        font-family: "Hepta Slab", serif;
        padding: 10px 0;
    }
    p {
        color: var(--text);
        font-family: "Hepta Slab", serif;
        font-size: 0.75em;
        font-weight: 500;
        margin-bottom: 10px;
        span {
            font-size: 0.6em;
            font-weight: 300;
        }
    }

    label {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        background-color: var(--second-card);
        border-radius: 5px;
        align-items: center;
        padding: 0 5px;
        justify-content: space-between;
        height: 50px;
        gap: 10px;
        input {
            width: 100%;
            font-family: "Hepta Slab", serif;
            font-size: 1em;
            height: 30px;
            overflow-x: scroll;
            background-color: var(--second-card);
            border: none;
            padding: 5px;
            box-sizing: border-box;
            color: var(--text);
        }
        input:focus {
            border: none;
            outline: none;
        }
        .copy {
            height: 50px;
            width: 50px;
        }
        .paste {
            height: 30px;
            width: 30px;
        }
    }

    #t2e-copy-message, #e2t-copy-message {
        color: var(--secondary-text);
        font-size: 0.75em;
        font-weight: 300;
        margin-top: 5px;
    }
}

.caps-fixer {

}