.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.square-button {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button-content {
    text-align: center;
}

.text {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.up-button {
    background-color: #ff4757;
}

.down-button {
    background-color: #2e86de;
}
.assistant-button {
    background-color: #9e9e9e;
}

.assistantkr-button {
    background-color: #9e9e9e;
}

.square-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* 기본 스타일 초기화 */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* 링크 스타일 제거 */
a {
    text-decoration: none;
}