/* Overlap */
.logo-and-text {
    width: 70vmin;
    height: 70vmin;
    margin: auto;
    /* margin-bottom: -10vh; */
    padding: 20vh 0 0 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.buffer-logo-container {
  position: absolute;
}


.logo-container {
    background-color: transparent;
    width: 70vmin;
    height: 70vmin;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rays1 {
  width: 50vmin;
  height: 50vmin;
  background-color: orange;
  animation: rotation 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  border-radius: 5%;
  position: absolute;
}

.rays2 {
    width: 50vmin;
    height: 50vmin;
    background-color: orange;
    animation: rotation2 12s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    border-radius: 5%;
    position: absolute;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
    transform: rotate(359deg);
    }
}

@keyframes rotation2 {
from {
    transform: rotate(45deg);
}
to {
    transform: rotate(404deg);
}
}

.camo-circle {
    background-color: #FEFDD6;
    width: 55vmin;
    height: 55vmin;
    border-radius: 50%;
    position: absolute;
}
  
.circle {
    background-color: orange;
    width: 50vmin;
    height: 50vmin;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Text */
.text-container {
    background-color: transparent;
    width: 70vmin;
    height: 70vmin;
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.transparent-part {
  flex-basis: 40%;
}

.non-transparent-part {
  flex-basis: 60%;
  padding: 1vmin 0;
  background-color: #FEFDD6;
}

.main-logo-text {
  margin: 0;
  padding: 0;
  font-size: 10vmin;
  vertical-align: bottom;
}

.secondary-logo-text {
  margin: 0;
  padding: 0;
  font-size: 6vmin;
  color: grey;
  vertical-align: bottom;
}

@media screen and (min-width: 480px) {
  /* Overlap */
  .logo-and-text {
  width: 56vmin;
  height: 56vmin;
  padding: 16vh 0 0 0;
  }

  .logo-container {
  width: 56vmin;
  height: 56vmin;
  }

  .rays1 {
  width: 40vmin;
  height: 40vmin;
  }

  .rays2 {
  width: 40vmin;
  height: 40vmin;
  }

  .camo-circle {
  width: 44vmin;
  height: 44vmin;
  }

  .circle {
  width: 40vmin;
  height: 40vmin;
  }


  /* Text */
  .text-container {
  width: 56vmin;
  height: 56vmin;
  }

  .main-logo-text {
  font-size: 8vmin;
  }

  .secondary-logo-text {
  font-size: 4.8vmin;
  }
}

/* Wide screens */
@media (min-width: 800px) {
  /* Overlap */
  .logo-and-text {
    width: 35vmin;
    height: 35vmin;
    padding: 10vh 0 0 0;
    margin: 0;
    }
  
    .logo-container {
    width: 35vmin;
    height: 35vmin;
    }
  
    .rays1 {
    width: 25vmin;
    height: 25vmin;
    }
  
    .rays2 {
    width: 25vmin;
    height: 25vmin;
    }
  
    .camo-circle {
    width: 27.5vmin;
    height: 27.5vmin;
    }
  
    .circle {
    width: 25vmin;
    height: 25vmin;
    }
  
  
    /* Text */
    .text-container {
    width: 35vmin;
    height: 35vmin;
    }
  
    .main-logo-text {
    font-size: 5vmin;
    }
  
    .secondary-logo-text {
    font-size: 3vmin;
    }
}
/*CSS for really wide screens*/
@media (min-width: 1100px) {
  .logo-and-text {
    align-self: center;
  }
}