@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: darksalmon;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    overflow: hidden;
    height: 100vh;
}

.square {
    width: 10rem;
    height: 10rem;
    background-color: white;
    border: 2px solid grey;
    padding: 5px;
    position: relative;
}

.circle1 {
    width: 2rem;
    height: 2rem;
    background-color: darksalmon;
    border: 2px solid grey;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

.circle2 {
    width: 2rem;
    height: 2rem;
    background-color: darksalmon;
    border: 2px solid grey;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
}

.circle3 {
    width: 2rem;
    height: 2rem;
    background-color: darksalmon;
    border: 2px solid grey;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
}

.circle4 {
    width: 2rem;
    height: 2rem;
    background-color: darksalmon;
    border: 2px solid grey;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
}

.circle5 {
    width: 2rem;
    height: 2rem;
    background-color: darksalmon;
    border: 2px solid grey;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 40%;
    bottom: 40%;
}

.circle {
    width: 10rem;
    height: 10rem;
    background-color: white;
    border: 2px solid grey;
    border-radius: 50%;
}

.half-circle {
    width: 10rem;
    height: 5rem;
    background-color: white;
    border: 2px solid grey;
    border-top-left-radius: 5rem;
    border-top-right-radius: 5rem;
}

.rotate-circle {
    animation: 1s linear infinite rotate;
    /* position: relative;
    top: -100px; */
    transform-origin: 50% 100%;
}

@keyframes rotate-circle {
    from {
      transform: rotate(0deg)
    }
    to {
      transform: rotate(360deg)
    }
  }
  
  .loader {
    width: 5rem;
    height: 5rem;
    border: 16px solid white;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    from { 
        transform: rotate(0deg); 
    }
    to { 
        transform: rotate(360deg); 
    }
  }