
html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-font);
}
body {
    margin: 0px;
}
main {
    display: flex;
    justify-content: center;
}
#cvt-ctn {
    display: flex;
    flex-direction: column;
    border: 1px solid lightgray;
    border-radius: 1em;
    padding: 0em 1em 1em 1em;
    margin-top: 1em;
}
#cvt-header {
    display: flex;
    justify-content: space-between;
    padding: .5em 0;
}
#github-a {
    border-radius: 50%;
    cursor: pointer;
    background-color: transparent;
}
#github-a:hover {
    background-color: whitesmoke;
}
#github-a:active {
    background-color: lightgray;
}
#settings-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid lightgray;
    background-color: transparent;
    padding: .3em;
}
#settings-btn:hover {
    background-color: whitesmoke;
}
#settings-btn:active {
    background-color: lightgray;
}
#cvt-settings {
    height: 0px;
    flex-direction: column;
    overflow-y: hidden;
    transition: height 0.3s;
}
.title-wrapper {
    background-color: white;
}
.ctv-ctn-title {
    color: #0088ff;
    font-weight: lighter;
    user-select: none;
    border-top: 1px solid lightgray;
}
.settings-ctn {
    background-color: #f5f5f5ad;
    padding: 0.5em;
    border-radius: 0.5em;
    margin: 0.2em 0em;
}
.settings-ctn p {
    margin-block-start: .1em;
    color: #393939;
}
.settings-ctn label {
    color: #393939;
}
#cvt-body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

#cvt-body section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#cvt-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid lightgray;
    background-color: transparent;
    margin: 2.8em 1em 1em 1em;
    padding-top: .3em;
}
#cvt-btn:hover {
    background-color: whitesmoke;
}
#cvt-btn:active {
    background-color: lightgray;
}

.cvt-body-raw {
    flex-direction: raw;
}
.cvt-body-raw-reverse {
    flex-direction: row-reverse;
}
.cvt-body-column-reverse {
    flex-direction: column-reverse;
}
@media (max-width: 500px) {
    
    #cvt-btn {
        margin: 1em 0em;
        transform: rotate(90deg)
    }
}
