* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e6f3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

.game-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(44, 82, 130, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    padding: 0 10px;
    gap: 20px;
}

.score, .lives {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c5282;
    flex: 1;
}

.score {
    text-align: left;
}

.lives {
    text-align: right;
}

.button-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

#start-button, .home-button {
    padding: 10px 20px;
    font-size: 1.1em;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

#start-button {
    background-color: #4CAF50;
}

.home-button {
    background-color: #2c5282;
}

#start-button:hover {
    background-color: #45a049;
}

.home-button:hover {
    background-color: #1a365d;
}

#gameCanvas {
    border: 2px solid #333;
    background-color: #c0c0c0;  /* 더 짙은 회색으로 변경 */
    display: block;
    margin: 0 auto;
} 