/* 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." */


*{
    box-sizing:border-box;
}

body {
    margin: 0;
    min-height: 100%;
    background: url("images/bg.png") center center / cover no-repeat fixed;
}

#wrapper{
    width:900px;
    max-width:90%;
    margin:60px auto;
    background:#171615;
    border:3px solid #7d6a5f;
    color:#c8c1bb;
}

header{
    text-align:center;
    padding:60px 40px;
    border-bottom:3px solid #7d6a5f;
}

header h1{
    margin:0;
    font-size:44px;
    font-weight:normal;
    letter-spacing:6px;
    color:#d9b6a7;
}

main{
    padding:45px;
}

h1{
  margin:0;
  font-size:44px;
  font-weight:normal;
  letter-spacing:6px;
  color:#d9b6a7;
}

h2{
    margin-top: 30px;
    margin-bottom: 16px;
    font-size:20px;
    color:#d9b6a7;
    border-bottom:1px solid #7d6a5f;
    padding-bottom:8px;
}

p {
  margin-bottom: 6px;
  line-height: 1.4;
  color:#d7d7d7;
}

li {
  margin-bottom: 6px;
  line-height: 1.2;
  color:#d7d7d7;
}

.placeholder{
    margin-top:25px;
    padding:20px;
    background:#161413;
    border:1px solid #7d6a5f;
}

a{
    color:#c18d73;
}

a:hover{
    color:#e4c8b6;
}

code{
    color:#f2d4ca;
}

@font-face {
  font-family: 'RenoMono';
  src: url('https://humantooth.neocities.org/fonts/RenoMono.eot');
  src: url('https://humantooth.neocities.org/fonts/RenoMono.eot?#iefix') format('embedded-opentype'),
       url('https://humantooth.neocities.org/fonts/RenoMono.woff2') format('woff2'),
       url('https://humantooth.neocities.org/fonts/RenoMono.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.adoption-litter{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
    margin-bottom:50px;
}

.adoption-card{
    width:160px;
    text-align:center;
    margin:0 auto;
}

.adoption-card img{
    width:160px;
    height:160px;
    object-fit:contain;
    display:block;
    margin:0 auto;
}

.adoption-card a {
  text-decoration: none;
  font-weight: bold;
}

.cleo {
  text-align: right;
}

.cleo-img {
  width: 140px; /* 원하는 크기 */
  height: auto;
}