body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: "Syne", sans-serif;
}

h1 {
    text-align: center;
    font-size: 3.5rem;
    margin: 1rem 0;
}

a {
    text-decoration: none;
    color: white;
    font-family: "Syne", sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

main {
    width: 100%;
    height: 100vh;
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-direction: column;
}


.circle-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 1rem auto;
}

.icon-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.icon {
    position: absolute;
    top: 32%;
    left: 36%;
    text-align: center;
    transform-origin: center center;
    /* turningpoint of each Icon */
    transition: transform 1s ease-in-out;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.icon img {
    width: 80px;
    height: auto;
}

/* turn icon in circle */
.turn-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
}