@font-face {
    font-family: 'KBO Dia Gothic';
    src: url('../fonts/KBO-Dia-Gothic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'KBO Dia Gothic', sans-serif;
    background-color: #002561;
    color: #002561;
    margin: 0;
    padding-top: 80px;
}
.player-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    margin: 100px 20px;
}

.circle-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: #d9d9d9;
    color: #002561;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 10px;
}

.circle-button img {
    width: 280px;
    height: 280px;
    margin-bottom: 40px;
}

.circle-button span {
    font-size: 18px;
    line-height: 1.2;
}

.circle-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(255, 215, 0, 0.6);
}

/*phone transaction*/ 
@media (max-width: 768px) {
    .main-section {
    flex-direction: column;
    align-items: center;
    }
.left-section, .right-section {
    align-items: center;
    }
}