@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    font-size: 14px;
    background-color: #dfdfdf;
}

#container {
    position: relative;
}

/* intro 시작 */

#introContainer {
    display: block;
}

.intro-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro-container img {
    min-width: 300px;
    object-fit: fill;
    width: 50vmin;
    height: 80vmin;
    
}

.intro-img-btn {
    position: relative;
}

.intro-msg 
{
    position: absolute;
    top: 5%;
    left: 15%;
    width: 60%;
    background: #066d1c;
    border-color: #066d1c;
	border-radius: .4em;
    color: #cfcfcf;
    font-size: 1.3em;
    font-weight: 600;
    padding: 5%;
}

.intro-msg::after {
    content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 30px solid transparent;
	border-top-color: #066d1c;
	border-bottom: 0;
	border-left: 0;
	margin-left: -15px;
	margin-bottom: -30px;
}

.intro-btn {
    position: absolute;
    width: 30%;
    bottom: 3%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.w-btn-outline {
    position: relative;
    width: 100%;
    padding: 15px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
    font-size: 1.2em;
}

.w-btn-outline:hover {
    letter-spacing: 2px;
    transform: scale(1.2);
    cursor: pointer;
}

.w-btn-skin-outline {
    border: 3px solid #e2f110;
    color: #6e6e6e;
}

.w-btn-skin-outline:hover {
    background-color: #e2f110;
    color: #6e6e6e;
}

.chat-container {
    position: absolute;
    min-width: 300px;
    width: 35vw;
    transform: translate(-50%, -60%);
    display: none;
}

.chat-box-container .chat-box {
    height: 40vh;
    background-color: #f2f2f2;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow-y: scroll;
}

.chat-box-container .chat-box::-webkit-scrollbar{
    display:none;
  }

.chat-box .chat-message {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.chat-box .chat-message p {
    margin: 0;
    padding: 0;
}

.chat-box-container .chat-input {
    display: flex;
    margin-top: 20px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.chat-input button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.chat-input button:hover {
    background-color: #3e8e41;
}

.assistant {
    color: blue;
}

#loader {
    font-size: 25px;
    display: none;
    text-align: center;
}

.chat-box .assistant-messages {
    width: 70%;
    display: flex;
    justify-content: left;
    float: left;
}

.chat-box .user-messages {
    width: 70%;
    display: flex;
    justify-content: right;
    float: right;
}

#kakaoAd {
    min-width: 300px;
    width: 35vw;
    position: absolute;
    transform: translate(-50%, 60%);
    height: 40vh;
}