/* General body styles */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #939292;
    background-image: url("background_images/index_background.jpg");
    color: #333;
}

/* Heading styles */
h1 {
    color: #f4f9fe;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #0056b3;
    
}
h2 {
    color: #f4f9fe;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h3{
    color: #f4f9fe;
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-bottom: 10px;
    border-top: 2px solid #0056b3;
}


/* Paragraph styles */
p {
    line-height: 1.6;
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: white
     
}

p1 {
    line-height: 1.6;
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-bottom: 10px;
    color: white
    
     
}


/* Button styles */
.button {
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none; /* Remove underline from links styled as buttons */
    display: inline-block; /* Allow padding and margin to work correctly */
}

/* Hover effect for buttons */
.button:hover {
    background-color: #218838;
}

/* Container for content */
.container {
    max-width: 800px;
    margin: 0 auto; /* Center the container */
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* customizable snowflake styling */
/*Source: https://pajasevi.github.io/CSSnowflakes/*/
.snowflake {
  color: #fff;
  font-size: 1em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px #000;
}
 
.snowflake,.snowflake .inner{animation-iteration-count:infinite;animation-play-state:running}@keyframes snowflakes-fall{0%{transform:translateY(0)}100%{transform:translateY(110vh)}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;user-select:none;cursor:default;pointer-events:none;animation-name:snowflakes-shake;animation-duration:3s;animation-timing-function:ease-in-out}.snowflake .inner{animation-duration:10s;animation-name:snowflakes-fall;animation-timing-function:linear}.snowflake:nth-of-type(0){left:1%;animation-delay:0s}.snowflake:nth-of-type(0) .inner{animation-delay:0s}.snowflake:first-of-type{left:10%;animation-delay:1s}.snowflake:first-of-type .inner,.snowflake:nth-of-type(8) .inner{animation-delay:1s}.snowflake:nth-of-type(2){left:20%;animation-delay:.5s}.snowflake:nth-of-type(2) .inner,.snowflake:nth-of-type(6) .inner{animation-delay:6s}.snowflake:nth-of-type(3){left:30%;animation-delay:2s}.snowflake:nth-of-type(11) .inner,.snowflake:nth-of-type(3) .inner{animation-delay:4s}.snowflake:nth-of-type(4){left:40%;animation-delay:2s}.snowflake:nth-of-type(10) .inner,.snowflake:nth-of-type(4) .inner{animation-delay:2s}.snowflake:nth-of-type(5){left:50%;animation-delay:3s}.snowflake:nth-of-type(5) .inner{animation-delay:8s}.snowflake:nth-of-type(6){left:60%;animation-delay:2s}.snowflake:nth-of-type(7){left:70%;animation-delay:1s}.snowflake:nth-of-type(7) .inner{animation-delay:2.5s}.snowflake:nth-of-type(8){left:80%;animation-delay:0s}.snowflake:nth-of-type(9){left:90%;animation-delay:1.5s}.snowflake:nth-of-type(9) .inner{animation-delay:3s}.snowflake:nth-of-type(10){left:25%;animation-delay:0s}.snowflake:nth-of-type(11){left:65%;animation-delay:2.5s}

/* Styles for the Google Sheet link */
.sheet-link {
  display: block;
  text-align: center;
  font-size: 1.5em;
  margin: 20px auto;
  padding: 10px;
  border: 2px solid #0056b3;
  border-radius: 8px;
  background-color: #f4f9fe;
  color: #0056b3;
  text-decoration: none;
  width: fit-content;
}

.sheet-link:hover {
  background-color: #0056b3;
  color: #f4f9fe;
}

/* Styles for the embedded Google Sheet */
.sheet-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  padding: 10px;
  border: 2px solid #0056b3;
  border-radius: 8px;
  background-color: #f4f9fe;
}

.sheet-container iframe {
  border: none;
  width: 100%;
  height: 100%;
}