*{
    box-sizing: border-box;
    /* margin: 0;
    padding: 0; */
}
html{
    height: 100%;
}
body{
    background-color: #2C3333;
    color : #E7F6F2;
    min-width: 300px;
    height:100%;
    margin:0;
    padding:0;
}
.wrap{
    position: relative;
    min-height: 100%;
    min-width: 100%;
    display:flex;
    flex-direction: column;
  padding-bottom: 100px;
}

footer {
    position: absolute;
	bottom: 0;
	width: 100%;
    background-color: #252b2b;
    color:#788a8a;
    margin-top: 20px;
	/* height: 30px; 내용물에 따라 알맞는 값 설정 */
}
footer p{
    width:fit-content;
    margin:20px auto;
}
footer p a{
    text-decoration: none;
    color:#8ea4a4;
}

/* -------- */

input{
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #E7F6F2;
    margin: 10px 0;
    font-size: 1.2em;
    color:#E7F6F2;
}

.hidden {
    display :none !important;
}
.show {
    display: block !important;
}
.flex-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap : wrap;
}

.flex-col{
    display: flex;
    flex-direction: column;
}
#settings{
    cursor: pointer;
    font-size: 23px;
    margin:10px 10px;
}
/* Mobile Device */
@media (max-width: 480px) {

} 
