html{
  scroll-behavior: smooth;
}

@font-face {
  font-family: playfair;
  src: url(playfairregular.ttf)
}
@font-face {
  font-family: lato;
  src: url(latoregular.ttf)
}

body { 
  font-family: lato;
  margin: 0; padding: 25px 50px;
  color: var(--black);
  background: var(--backgrd);
  display: flex;
  flex-direction: column;
  align-items: center;
}




:root{
  --blue: blue;
  --txtblue: rgba(0,0,255,0.9);
  --white: white;
  --black: rgba(0,0,0,0.8);
  --backgrd: rgb(247, 245, 252);
  --head2: rgba(0,0,0,0.6);
}


#playfair{
  font-family: playfair;
}



a {
  text-decoration: none;
  color: var(--black);
  transition: 0.4s ease-in-out;
}
a.active, a:hover{
  color: var(--blue);
}
li{
  padding: 0;
  margin: 0 5px;
  list-style-type: none;
}
h1{
  color: rgba(0,0,0,0.85);
  margin: 5px;
}
h3{
  color: rgba(0,0,0,0.6)
}

.yt{
  border-radius: 20px;
  height: 350px;
}



button{
  border: none;
  padding: 15px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btn{
  background-color: var(--txtblue);
  color: var(--white);
}
.btnstrip{
  background-color: rgba(0,0,255,0.075);
  color: var(--blue);
  margin: 10px;
}
.btnw{
  background-color: var(--white);
  margin: 10px;
}
.btnwb{
  background-color: var(--white);
  padding: 15px 30px;
}
.btn:hover, .btnw:hover, .btnwb:hover, .btnstrip:hover, .go_cat_orange:hover, .go_cat_blue:hover{
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 5px 10px rgba(0, 0,0,0.24);
}
button span {
  font-size: 20px;
  padding: 0px;
  margin: 0 5px 0 0;
}


.lr{
  width: 100%;
  display: flex;
}
.lr #lr_r{
  justify-content: end;
}


#graddy{
  background-image: linear-gradient(to top right, rgba(0, 0, 255, 0.2),rgba(255, 166, 0, 0.1))
}


/*--------------------*/