.container {
    margin: 40px auto;
    width: 600px;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.method-container {
    text-align: center;
}

.circle-position-container {
    position: relative;
    width: 300px;
    height: 200px;
    border: 2px solid #333;
    background-color: #ffffff;
}

.circle-position {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #ff0000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
}

.circle-transform-container {
    width: 300px;
    height: 200px;
    border: 2px solid #333;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-transform {
    width: 100px;
    height: 100px;
    background-color: #ff0000;
    border-radius: 50%;
    transform: scale(1);
}

