* {
  /* div 클릭 시 파란색 깜빡임 제거 */
  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: transparent !important;
}

.main-container {
    min-width: 0;
	height: calc(100% - 120px);
    background-color: #F4F8FF;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.main-container-1 {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    cursor: default;
}

.main-title {
    font-size: 40px;
    letter-spacing: -0.54px;
    font-weight: bold;
    color: #296591;
}
.main-title-s {
    font-size: 16px;
    font-weight: bold;
    color: #296591;
}
.main-title-m{
	font-size: 20px;
    font-weight: bold;
    color: #296591;
}
.main-character {
	width: 128px;
	height: auto;
}

.main-btns {
    width: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-btn-1 {
	width: 95%;
	padding: 10px;
    background-color: #fff;
    border-radius: 24px;
    border: 1px solid #c6dcff;
    display: flex;
    flex-direction: row;
	justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}
.main-btn-1-text {
    display: flex;
    flex-direction: column;
    width: 145px;
    gap: 10px;
}
.main-btn-1-text span:nth-child(1) {
    color: #296591;
    font-weight: bold;
}
.main-btn-1-text span:nth-child(2) {
    color: #2d2d2d;
    font-size: 14px;
}

.main-btn-2 {
	width: 95%;
	padding: 10px;
    background-color: #fff;
    border-radius: 24px;
    border: 1px solid #efd6cc;
    display: flex;
    flex-direction: row;
	justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}
.main-btn-2-text {
    display: flex;
    flex-direction: column;
    width: 145px;
    gap: 10px;
}
.main-btn-2-text span:nth-child(1) {
    color: #A46E58;
    font-weight: bold;
}
.main-btn-2-text span:nth-child(2) {
    color: #2d2d2d;
    font-size: 14px;
}

.main-btn-3 {
	width: 95%;
	padding: 10px;
    background-color: #fff;
    border-radius: 24px;
    border: 1px solid #d0c3e1;
    display: flex;
    flex-direction: row;
	justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
}
.main-btn-3-text {
    display: flex;
    flex-direction: column;
    width: 145px;
    gap: 10px;
}
.main-btn-3-text span:nth-child(1) {
    color: #8c6bb7;
    font-weight: bold;
}
.main-btn-3-text span:nth-child(2) {
    color: #2d2d2d;
    font-size: 14px;
}
.main-btn-3-text .main-btn-3-text-sub {
	display: flex;
    flex-direction: row;
    gap: 5px;
}

.main-btn-3-text .main-btn-3-text-sub .label-for-user {
	padding: 3px 6px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    background-image: linear-gradient(to right bottom, #FF9B8C, #FD4D86);
    border-radius: 10px;
}

.info-text-span{
	font-size: 10px;
	color: grey;
	line-height: 11px;
}
@media screen and (max-width: 330px) {
	.main-title {
		font-size: 35px;
	}
	
	.main-container-1 {
		gap: 10px;
	}
	
	.main-character {
		width: 80px;
	}
	
	.main-title-s {
		font-size: 14px;
	}
	
	.main-btn-1, .main-btn-2, .main-btn-3 {
		padding: 6px;
	}
	
	.main-btn-1-text, .main-btn-2-text, .main-btn-3-text {
		gap: 5px;
	}
	
	.main-btn-1-text span:nth-child(1) {
		font-size: 15px;
	}
	
	.main-btn-1-text span:nth-child(2) {
		font-size: 13px;
	}
	
}