* {
    box-sizing: border-box !important;
}

body {
    margin: 0;
    padding: 0;
    background: #233637;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

html {
    font-size: 125%;
}

.react {
    width: 30rem;
    height: 10rem;
    border: .3rem solid #61dafb;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.react::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: .3rem solid #61dafb;
    border-radius: 50%;
    transform: rotate(60deg);
}

.react::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: .3rem solid #61dafb;
    border-radius: 50%;
    transform: rotate(-60deg);
}

.circle {
    width: 6rem;
    height: 6rem;
    top: 50%;
    left: 50%;
    background-color: #61dafb;
    border-radius: 50%;
}