body {
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    font-family: 'Arial', sans-serif;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 60px 30px;
    text-align: center;
    max-width: 800px;
    width: 90%;
    margin: 30px auto 50px auto;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.info {
    display: flex;
    justify-content: center;
    background-color: #e9ecef;
    padding: 15px 15px 15px 15px;
    border-radius: 5px;
    margin: 20px 50px 20px 50px;
    text-align: left;
}

.info-left, .info-right {
    width: 48%;
}

.info p {
    margin: 10px 0;
    font-size: 1em;
    color: #333;
}

.menu-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background-color: #5cb85c;  /* 더 부드러운 녹색으로 변경 */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-button:hover {
    background-color: #4cae4c;  /* 호버 시 색상 변경 */
    transform: translateY(-3px);
}

.menu-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    body {
        padding: 0 !important;
        overflow-x: hidden;
    }

    .container {
        margin: 0px;
        border-radius: 0;
        padding: 30px 25px 30px 25px;
        overflow-x: hidden;
        /*max-width: 95%;*/
    }

    .menu-links {
        flex-direction: column;
        align-items: center;
    }

    .menu-button {
        width: 80%;
    }

    .info {
        padding: 15px;
    }

    .info p {
        font-size: 1em;
    }
}