body {
    background-color: #F3F1E5;
    color: white;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    height: 100vh;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1024px;
    /* 데스크탑에서는 최대 1024px로 제한 */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    vertical-align: top;
    margin-top: 50px;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5em;
    font-weight: bold;
    color: black;
}

.menu-button {
    position: absolute;
    top: 13px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: url('menu.png') no-repeat center;
    background-size: contain;
    border: none;
    cursor: pointer;
}

.menu-container {
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(50, 50, 50, 0.9);
    border-radius: 5px;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
}

.menu-container a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.menu-container a:hover {
    background: rgba(255, 255, 255, 0.2);
}

h1 {
    text-align: center;
    color: black;
}

#lottie-container {
    width: 300px;
    height: 50vh;
    margin: 20px auto;
}

img {
    max-width: 100%;
    height: 50vh;
    display: block;
    margin: 20px auto;
}

.button-container {
    position: absolute;
    bottom: 80px;
}

.taro-button {
    background-color: #D6E9D3;
    color: black;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    width: 75vw;
    text-align: center;
}

/* .taro-button:hover {
    background-color: darkviolet;
} */

/* 반응형 미디어 쿼리 */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }
}