/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/* Start https://www.cursors-4u.com */ * {cursor: url(https://cur.cursors-4u.net/cursors/cur-3/cur247.ani), url(https://cur.cursors-4u.net/cursors/cur-3/cur247.png), auto !important;} /* End https://www.cursors-4u.com */
   
html{
   cursor: url(images/cursor.png) 1 1, auto;
}

body {
      margin: 0;
      font-family: georgia;
      font-size: 8pt;
      background-color: #b9d9b6; 
      color: #000;
            line-height: 1.3;
           
            
    }
    

    /* 상단 네비 */
  nav {
      text-align: center;
      padding: 50px;
    }

    nav a {
      margin: 0 30px;
      text-decoration: none;
      color: #41a97f; 
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }
    
    /* 전체 레이아웃 */
.container {
   margin: 0 auto; /* 화면 가운데 정렬 */
   width: 730px;
}


       /* 사이드바 */
    .sidebar {
      float: left;
      width: 180px;
      margin: 5px;
    }

    .card {
      background-color: #ee9a5e; /* 오렌지 */
      padding: 10px;
      margin-bottom: 10px;
      border-style: dotted;
      border-color: #41a97f;
      border-width:2px;
    }
    
        .card2 {
      border-style: dotted;
      border-color: #41a97f;
        border-width:2px;

    }
    

    
       #contact{
    background-color: #ee9a5e; 
         padding: 10px;
         margin-bottom: 0px;
         
         
  }
    
     #text {
       background-color: white;
      padding: 10px;
      margin-top: 0px;
      text-align: center;
  
    }
    


       /* 메인 */
    .main {
         float: left;
        width: 500px;
      background-color: white; /* 오렌지 */
      padding: 15px;
         margin: 5px;
         color: #e66b2e; 
    }

    .main h2 {
      margin-top: 0;
    }

    .images {
      margin-top: 20px;
    }

    
     .narrow-mono {
  max-width: 350px;   /* 글줄 너비 제한 (원하는 값으로 조정) */
  font-family: "Courier New", Courier, monospace; /* 모노타입 폰트 */
  font-size: 7pt;
  line-height: 1.2;   /* 가독성을 위한 줄간격 */
  color: black;
}

#footer{
  clear: both;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    color:#41a97f;
}

