
.box {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  background: coral;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 10000px;
  
}

.scroll-container{

    height: 100vh;
    background: #eee;
    
    overflow: hidden;
}


.scroll-move-box {
  position: relative; 
  margin: 0 auto;
  opacity: 0;
  max-width: 800px;

}

.animated-text{
    position: relative; 
  margin: 0 auto;
  opacity: 0;
  max-width: 600px;
  text-align: center;
  line-height: 1;
}


.animated-text h2{
    line-height: 1;
}


.animated-text .large{
    display: block;
    font-size: 170%;
    font-weight: bold;
    }


.circle{
    opacity: 0;
   transition: transform 0.3s ease, opacity 0.3s ease;
   margin: 0 auto;
  background: coral;
  background-position: center center;
  background-size: cover;
   border-radius: 10000px;
   transform: translateY(100px);
   background-image: url('https://picsum.photos/800?grayscale');
   display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(1);
}

.circle-large{
     width: 450px;
     height: 450px;
}

.circle-medium{
    width: 300px;
     height: 300px;
}

.circle-small{
    width: 200px;
     height: 200px;
}

/* For homepage slider */

.circle-container{
  position: relative;
  height: 95vh;
  max-height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.text-container{
font-family: "Ethic", Sans-serif;
  line-height: 1.1;
 /* transform: translateX({{starting_position|ucsafe|raw}})  translateY(0); */
  animation: slideUp 2s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
}

.text-container span{
 display:block;
}

.text-container span:first-child{
  font-size: 80px;
}

.podcast-buttons{
    display: flex;
    flex-flow: row wrap;
}

.podcast-buttons img{
    height: 70px;
    margin-right: 15px;
    transition: all .2s ease-in-out;
}

.podcast-buttons img:hover{
    transform: scale(1.1);
    }

.text-container span:nth-child(2){
  font-size: 120px;
  font-weight: bold;
  margin-left: 150px;
}

@media (max-width: 1300px){
  
  .text-container span:first-child{
  font-size: 60px;
}

.text-container span:nth-child(2){
  font-size: 80px;
  margin-left: 100px;
}

.circle-container{
    min-height: 700px;
    max-height: none;
    
}

  
}


@media (max-width: 767px){
    
   
  
  .text-container span:first-child{
  font-size: 30px;
}

.text-container span:nth-child(2){
  font-size: 60px;
  margin-left: 100px;
}



  
}

