
/* Global Element */
* {
    margin: 0 0;
    padding: 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
select {
    padding: 7px 15px;
    min-width: 250px;
}
input[type="color"] {
    min-width: 250px;
    border: none;
}
input[type="checkbox"] {
    height: 20px;
    width: 20px;
}
#nameInput {
    padding: 10px;
    width: 70%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border: 1px solid #444;
    margin-top: -200px;
}

/*  APP Main Screen */
.appFlex {
    background:#777;
    width: 100%;
    height: 100vh; 
    display: flex;
    gap: 5px;  
}

.appColumns {
    height: 100%; 
}
/* App Columns */
.fontSettingsContainer {
    background:lightgreen;
    width: 30%;
}
.resultContainer {
    background:white;
    width: 40%;
}
.colorSettingsContainer {
    background:skyblue;
    width: 30%;
}

/* App Header */

.appHeader {
    height: 65px;
    width: 100%;
    background-color: #777;
}

.appHeader h3 { 
    font-size: 25px;
    text-align: center;
    padding-top: 15px;
    color: #333;
}

/* resultContainer */

.resultContainer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}
#resultText {
    width: fit-content;
    padding: 5px 25px;
    font-size: 20px;
    margin-top: -200px;
}
/* setting-list */

.setting-list {
    margin-top: 20px;
}
.setting-list .setting {
    border-bottom: 5px solid #777;
    padding: 50px 15px;

    display: flex;
    justify-content: space-between;

}