@import url('https://fonts.googleapis.com/css?family=Lexend|Bangers');
@font-face {
  font-family: 'UTM-HelvetIns';
  src: url(UTM_HelvetIns.ttf);
};

body {
  margin: 0;
  padding: 0;
  font-family: 'UTM-HelvetIns';
  /* background:linear-gradient(to top, hsla(55, 70%,  72%, 0.8), hsla(0, 70%, 72%, 0.8)); */
  transition: background-color 1s ease; 

}

section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

section .box {
  position: relative;
  width: 467px;
  height: 830px;
  padding: 50px;
  /* box-shadow: 0 5px 15px rgba(255, 255, 255, .8); */
  overflow: hidden;
  /* background: rgba(255, 255, 255, 0.8); */
  background-color:rgba(212, 212, 212, 0.8);
  background-repeat: no-repeat !important; 
  background-position: center!important; 
  background-size: cover !important; 
  color: #b61b22;
  border-radius: 1em;
}

.box .quote-area {
  display: flex;
  justify-content: center;
  margin-top: 50%;
}

.quote-area i {
  font-size: 20px;
}

.quote-area i:first-child {
  padding-left: 10px;
  margin: 20px 10px 0 0;
}

.quote-area i:last-child {
  display: flex;
  align-items: flex-end;
  margin: 0 0 5px 5px;
  padding-right: 10px;
}

.quote-area .quote {
  font-family: 'UTM-HelvetIns';
  font-size: 20px;
  text-align: center;
}

.content .author {
  display: flex;
  justify-content: flex-end;
  font-family: 'UTM-HelvetIns';
  font-size: 16px;
  padding-right: 30px;
}

.author span:first-child {
  margin: 0 3px 0 0;
}

.author span:last-child {
  margin: 0 0 0 3px;
}

#current-date {
  font-family: 'Lexend';
  text-align: center;
  font-style: italic;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  padding: 10px 10px 0 0;
}


#newquote{
  border: none;
  outline: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 14px;
  background: #b71c1c;
  transition: all 0.7 ease;
  border-radius: 99px;
}

#newquote:hover{
  background:#ef5350;
}

.button.loading{
  opacity: 0.7;
  pointer-events: none;
}

#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0 , 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#popup-content {
  padding: 20px;
  position: relative;
  border-radius: 10px;
  text-align: center;
  transform: scale(0.8);
}

#popup-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: rgba(255, 255, 255, 0.8) 2px 5px 15px;
}

#close-btn {
  position: absolute;
  top: -10px;
  right: 25px;
  font-size: 60px;
  cursor: pointer;
  color: #fff;
  text-shadow: 1px 1px 2px black, 0 0 25px red, 0 0 5px darkred;
}

.hidden {
  display: none !important;
}


.btn-container{
  position: relative;
  display: flex;
  justify-content: center;
}

.btn-comp{
  position: fixed;
  top: 93%;
  font-family: "Bangers";
}





