
div, textarea{box-sizing: border-box;}
input:focus {
  color: rgb(17, 17, 17);
  outline: none;
}


#js {
  color: rgb(12, 12, 12);
  margin-top: 1rem;
  margin-right: 1rem;
  margin-left: 1rem;
  text-align: center;
  padding: 1rem;
 
  background-color: #e9e9e9;
  }


#nav {
  width: 100%;
  height: 35px;
  border: 3px solid #03cf5d;
  display: flex;
  font-size: 20px;
  border-radius: 0px;
}

#goo {
  width: 100%;
  height: 35px;
  font-size: 20px;
  /* display: flex; */
  border: 3px solid gray;
  border-radius: 20px 20px;
  /* box-shadow: 3px  bdc1c6; */
}

[name="q"] {
  width: 100%;
  height: 35px;
  font-size: 20px;
  border: 3px solid Yellow;
  border-radius: 10px;
}

[name="fsearch"] {
  margin: 30%
}

header {
  height: 10rem;
  text-align: center;
}

 input[type=text] {
 padding: 5px;
 margin: 3px;
}

#wrap {
  margin-top: 3rem;
}

#search {
  margin-bottom: 0.5rem;
  /* margin-right: 1.8rem; */
  width:90%; 
}

#coupa {
  text-align: center;
  width:95%;
  padding-left: 0.5rem;
}

/* * {
  max-width: 960px !important;
  margin: 0 auto;
  background-color: #e9e9e9;
} */

.footer {
  text-align: center;padding-bottom: 15rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
/* p {
  font-family: 'Noto Serif KR' !important;
} */

/* a:link {
  color: rgb(14, 55, 106);
}

a:visited {
  color: pink;
}

a:hover {
  color: red;
}

a:active {
  color: green
} */

/* 이하 txt 관련 */
html,body{margin:0px;padding:0px;}
div, textarea{box-sizing: border-box;}
#gnb{padding-left: 15px; width:100%;height:50px;border-bottom:1px solid #ccc;}
.logo{width:150px;text-align: center;line-height: 50px;}
#content{padding: 5px;}
.tarea{width:100%;height:500px;box-shadow:0 10px 20px #110101;background: #F7F7F8;color: black;border:1px solid #ccc;font-size: 17px;padding: 10px; line-height: 1.3em; min-width: 300px}
#footer{text-align: center;font-size: 12px;color: #777;}
/* .btn_save{width:150px;height:50px; background-color: #86d45f; font-size: 17px;} */
.btn_save btn btn-primary{padding: 300 300 300 300;}
#memotitle{color: black;}


/* calculator */
.placeholder{
            padding: 15px 0px 0px 5px;
            border-radius:1em;
            background-color: #f8f8f8;
            width: 300px;
            height: 380px;
            margin-bottom: 10px;
            margin-top: 50px;
        }
        .numpad{
            font-size: 2em;
            font-weight: bold;
        }
        .numpad > div{
            position: relative;
            float: left;
            width: 60px;
            height: 60px;
            border-radius: 0.3em;
            box-shadow: 1px 3px 15px -8px rgba(0,0,0,0.5);
            border: 5px solid rgba(9, 183, 96, 0.75);
            background-color: #f4f4f4;
            margin: 5px;
            cursor: pointer;
        }
        .numpad > div:active{
            box-shadow: none;
        }
        .numpad > div > span{
            position: absolute;
            display: block;
            /* 버튼 텍스트 가운데 정렬 */
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }
        .numpad > div.operator{
            background-color: #f0dbef;
        }
        .numpad > div.allclear{
            background-color: #983f8a;
        }
        .numpad > div.result{
            background-color: #4163ad;
        }
        .numpad > div.calc{
            background-color: #d0dec9;
        }
        .numpad > div:nth-child(4n+1){
            clear: left;
        }
        .pane{
            font-family: DotGothic16;
            font-size: 2em;
            width: 290px;
            height: 2em;
            padding: 0.25em;
            margin-bottom: .5em;
            box-sizing: border-box;
            text-align: right;
            border-radius: 0.1em;
            letter-spacing: 3px;
            background-color: #abbda7;
            box-shadow: inset 2px 2px 3px 0px rgba(0,0,0,.25);
        }