@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Gaegu:wght@300;400;700&display=swap');

body {
    font-family: 'Gaegu', cursive;
    text-align: center;
    background: #FFEAE9;
}

.wrapper {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
        height: unset;
        padding: 20px; 
}

.input-area {
    display: flex;
    flex-flow: row nowrap;
    gap: 8px;
}

h1 {
    font-size: 4em;
    color: #F27674;
}

input {
    font-family: 'Gaegu', cursive;
    font-size: 1.2em;
    padding: 5px;
    background-color: #FFD8BD;
    border: none;
    border-radius: 10px;
    outline: none;
}

button {
    font-family: 'Gaegu', cursive;
    font-size: 1.2em;
    padding: 5px 10px;
    background-color: #FFD8BD;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #F27674;
    color: white;
}

.description {
    font-size: 1.5em;
    color: #F27674;
    max-width: 800px;
    text-align: center;
    margin-bottom: 30px;
}

/* 다른 테스트하기 스타일 */
.back-to-main {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 40px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 6px;
  background-color: #106298;
  transition: background-color 0.3s;
}

/* 카카오톡 공유 버튼 중앙 정렬 */
.kakao-sharing-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 광고 영역 중앙 정렬 */
.ad-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    .description {
        font-size: 1em;
    }
	    input {
        width: 70%; /* 입력 칸의 너비를 조절 */
}

	
	   .wrapper {
        height: unset;
        padding: 20px; 
    }
#cute-image {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}
}