@import url('https://fonts.googleapis.com/css2?family=Tulpen+One&display=swap');


html {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #DFDBE5;
background-image: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 0h35v35H0V0zm5 5h25v25H5V5zm5 5h15v15H10V10zm5 5h5v5h-5v-5zM40 5h25v25H40V5zm5 5h15v15H45V10zm5 5h5v5h-5v-5zM70 35H35v35h35V35zm-5 5H40v25h25V40zm-5 5H45v15h15V45zm-5 5h-5v5h5v-5zM30 40H5v25h25V40zm-5 5H10v15h15V45zm-5 5h-5v5h5v-5z'/%3E%3C/g%3E%3C/svg%3E");
color:black;
font-family: 'Noto Sans Georgian', sans-serif;
font-weight: 900;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}

.quote-container{
  width: auto;
  max-width: 900px;
  padding: 20px 30px;
  border-radius: 10px;
  background-color: rbga(255,255,255,0.4);
  /* box-shadow: 0 10px 10px 10px rgba(172, 4, 4, 0.5); */
box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px inset, rgba(255, 255, 255, 0.2) .5px .5px 0 0 inset, rgba(255, 255, 255, 0.1) 0 0 0 1px inset, rgba(0, 0, 0, 0.1) 0 2px 4px 0, rgba(255, 255, 255, 0.05) 0 0 0 1px inset, rgba(0, 0, 0, 0.07) 0 1px 2px, rgba(0, 0, 0, 0.07) 0 2px 4px, rgba(0, 0, 0, 0.07) 0 4px 8px, rgba(0, 0, 0, 0.07) 0 8px 16px, rgba(0, 0, 0, 0.07) 0 16px 32px, rgba(0, 0, 0, 0.07) 0 32px 64px, rgba(255, 255, 255, 0.05) 0 0 0 1px inset, rgba(255, 255, 255, 0.06) 1px 1px 0 0 inset, rgba(255, 255, 255, 0.04) 0 0 0 1px inset;



}




button{
  cursor: pointer;
  border: 0;
  border-radius: 5px;
  padding: 0.5rem 1.8rem;
  margin: 0 5px;
  font-size: 1rem;
  background-color: #333;
  color: #ffffff;
  outline: none;
  transition: opacity 0.3s ease;
  height: 2.5rem;
  box-shadow: 0 0.3rem rgba(121,121,121,0.8);
}

button:hover{
 
  filter: brightness(110%);
}

button:active{
  transform: scale(0.98);
  transform: translate(0, 0.3rem);
  box-shadow: 0 0.1rem rgba(121,121,121,0.8);
  
}

.twitter-button:hover{
  color: #38a1f3;
}

.fa-twitter{
  font-size: 1.5rem;
}

.quote-text{
  font-size: 4.0rem;
  line-height: 1.5;
  color: #000000;
}

.long-quote{
  font-size: 2rem;
  line-height: 1.5;
}

.fa-quote-left{
  color: #000000;
  font-size: 4rem;
}

.quote-author{
  
  margin-top: 20px;
  font-size: 2.5rem;
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  
  
}

.button-container{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}




/* Loader */
.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #333;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Media Query */

@media (max-width: 1000px){
  .quote-container{
    margin:auto 10px;
  
  }


  .quote-text{
    font-size: 2.5rem;
  }

}