/* style.css */

/* 기본 스타일 */
body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(to right, #141e30, #243b55);
    color: #fff;
}

.container {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    width: 350px;
}

h1 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subheading {
    color: #dcdcdc;
    font-size: 15px;
    margin-bottom: 20px;
}

.qr-code img {
    width: 120px;
    margin: 15px 0;
}

.qr-code p {
    color: #b0c4de;
    font-size: 14px;
}

button {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(255, 87, 34, 0.4);
}

button:hover {
    background-color: #ff784e;
    box-shadow: 0 8px 16px rgba(255, 87, 34, 0.6);
    transform: translateY(-2px);
}

.info {
    font-size: 13px;
    color: #d3d3d3;
    margin-top: 20px;
}

/* 반응형 디자인 (모바일 화면용) */
@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 20px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .subheading {
        font-size: 14px;
    }
    
    .qr-code img {
        width: 100px;
    }
    
    button {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .info {
        font-size: 12px;
    }
}

 /* Footer 스타일 */
.footer {
    margin-top: 20px;
    text-align: center;
    color: #a9a9a9; /* footer 텍스트 색을 은은한 회색으로 설정 */
    font-size: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* 상단 경계선으로 내용과 구분 */
}

.footer p {
    margin: 0;
    line-height: 1.5;
    font-size: 12px;
    color: #d3d3d3;
}

