@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#container {
  margin: 0 auto;
  width: 1200px;
}

header {
  width: 100%;
  height: 70px;
}

#logo {
  float: left;
  width: 300px;
  height: 70px;
  line-height:70px;  /* 세로로 중간에 맞춤 - 줄간격을 높이 값과 같게 */
  padding-left:20px;  /* 왼쪽에 여백 */
  background-color: white;
}
#logo a {
  text-decoration: none;
}
#logo h1 {
  font-family: 'Merienda', cursive;
  font-weight: 700;
  font-size: 40px;
  color: green;
  text-shadow: 0 -1px 0 #222;
}

#menu {
  float: right;
  width: 850px;
  height: 70px;
  position: relative;
  background-color: #ffffff;
/*  border: 1px solid #000; */
}
#menu label {
  margin: 10px;
  padding: 10px;
  width: 40px;
  font-size: large;
  color: blue;
}

#serverUrl {
  margin-left: 0;
  margin-top: 20px;
  padding: 10px; 
  width: 250px;
  height: 30px;
  border:1px solid #000;    /*---테두리 정의---*/
  background-Color:#fff;   /*--백그라운드 정의---*/
}
#connect, #send, #clear {
  border:1px solid #000;    /*---테두리 정의---*/
  background-Color:#fff;   /*--백그라운드 정의---*/
  font:12px 굴림;      /*--폰트 정의---*/
  font-weight:bold;   /*--폰트 굵기---*/
  color:#000;    /*--폰트 색깔---*/
  width:150px;
  height:30px;  /*--버튼 크기---*/  
  display: inline-block;
  cursor: default;
  border-radius: 5px;
  box-shadow: 3px 3px 3px black;
  transition-duration: 0.3s;
}

#contents {
  width: 100%;
  height: 600px;
  background-color: aqua;
}
