body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: montserrat;
    font-size: xx-large;
    font-weight: 500;
}

.container {
    display : grid;
    column-gap: 50px;
    row-gap: 50px;
    height: 500px;
    width: 100%;
    margin-left: 400px;
    margin-right: 400px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
}

.item {
    border: dashed rgb(187, 187, 187) 3px;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

.square {
    height: 100px;
    width: 100px;
    border: 2px solid black;
}

.circle {
    height: 100px;
    width: 100px;
    border: 2px solid black;
    border-radius: 100%;
}

.circle-track {
    height: 100%;
    width:100px;
    position: relative;
}