/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
  
@font-face {
  font-family: "friendlyScribblesFont";
  src: url("friendlyscribbles.ttf") format("truetype");
}

html, body {
    font-family: "friendlyScribblesFont", sans-serif;
}

body {
  background-color: #F5F5F5;
  color: black;
  text-align: center;
}

.horizontal-box{
  padding: 1em;
  border-radius : 1em;
  margin: 1em;
  background-color : white;
  flex-grow: 1;
  
}
  
.styled-heading{
  display: inline-block;
  padding: 0.5em 3em;
  border-radius: 1em;
  background-color: #0b0055;
  color: white;
  margin: 1em auto;
  
}

.horizontal-layout{
  /* background-color: #FF82B3; */
  width : 100%;
  display: flex;
  justify-content: center;
}

.nav-bar ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  margin: 0;
  padding-bottom: 1em;
  width: 100%;
}

.nav-bar ul li {
  padding: 1em;
  position: relative;
}

.nav-bar ul li::after {
  content: "✦";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  transition: 0.25s ease;
}

.nav-bar ul li:hover{
  
  color: #FF82B3;
  
  }
  
.nav-bar ul li.active a {
  color: #FF82B3;
}

.nav-bar ul li:hover::after, .active::after {
  color: #FF82B3;
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}
.pink-nav-btn{
  border-radius: 1em;
  background-color: #FF82B3;
  color : white;
  }
  
.btn-padding{
  padding : 1em;
  margin: 0.5em;
  }

.round{
  border-radius: 100%;
  width: 1vw;     
  height: 1vw;     
  }

