/* 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." */

body {
  background-color: #FFFFFF;
  background-image: url('/Images/SiteLayout/sakura_background.png');
  color: black;
  font-family: 'arial', sans-serif;
  font-size: 12px;
}

#Div_Heading{
  display: flex;
  flex-direction: row;
  background-image: url("/Images/SiteLayout/Hearts_Pink.gif");
  justify-content: center;
  align-items: center;
  border-top: 5px dashed #FF2795;
  border-bottom: 5px dashed #FF2795;
}

h2{
  font-family: 'arial', sans-serif;
  text-align: center; 
}

h1{   
   font-family: 'Brush Script MT', 'Bradley Hand', 'Lucinda', cursive;
   font-weight: 100;
   font-size: 10vw;
   color: #FF2795;
   background-color: #FFC3CE;
}

h3{
  color: #FF2795;
  text-align: center; 
}

main{
  background-color: white;
  border-top: 5px dashed #FF2795;
  border-bottom: 5px dashed #FF2795;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
}

.sidecolumn{
  background-image: url("/Images/SiteLayout/Hearts_Pink.gif");
  width:20%;
   text-align: left;
}

.maincolumn{
  text-align:justify;
  width:60%;
}

nav{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2vw;
  background-color: #FFC4E1;
}

a{
  color: #FF2795;
}

footer{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.navbar {
  overflow: hidden;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: #FF2795;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: #FF2795;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

section{
  border: 2px solid #FF2795;
  border-radius: 5%;
  margin: 5px;
  padding: 5px;
  background-color: RGBA(255,255,255,0.5);
}

.scrollable{
  height: 150px;
  overflow-y: auto;
}

.floatedleft{
  float:left;
}

.floatedright{
  float:right;
}

  #stats {
    font-family: Arial, sans-serif;
    font-size: 18px;
  }
  .number {
    font-weight: bold;
    color: #ff69b4;
  }
  
  html {
  scrollbar-width: auto; /* Options: auto, thin, none */
  scrollbar-color: #ffffff #FF2795; /* [Thumb Color] [Track Color] */
}

.btn-3d {
  /* Colors and Shape */
  background-color: #ff69b4; /* Hot Pink */
  color: white;
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 40px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  outline: none;

  /* The 3D "Sides" */
  box-shadow: 0 9px #d81b60; /* Darker pink for depth */
  
  /* Smooth movement */
  transition: all 0.1s ease;
  position: relative;
}

/* Hover Effect: Slightly brighten */
.btn-3d:hover {
  background-color: #ff85c1;
}

/* Click Effect: The button "depresses" */
.btn-3d:active {
  background-color: #ff69b4;
  box-shadow: 0 4px #d81b60; /* Shadow gets smaller */
  transform: translateY(4px); /* Moves down to meet the shadow */
}