body {
  text-align: center;
  background-color: rgba(220, 235, 255, 0.7);
}
* {
  font-family: Courier New, monospace;
}
html {
  scroll-behavior: smooth;
}
header h1 {
  font-size: 50px;
  font-family: 'Montserrat', sans-serif;
  color: rgba(0, 0, 255, 0.5);
}
h1 {
  color: rgba(0, 0, 255, 0.5);
  font-family: Roboto;
}
.about {
  border: 2px solid black;
  background-color: #f0f8ff;
  border-radius: 10px;
  padding-bottom: 20px;
}

/* credit from tiktok :> */
.binimaloi-txt h1 {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}
.binimaloi {
  display: flex;
  height: 200px;
  gap: 16px;
  margin: 0 auto;
  max-width: 90%;
  justify-content: center;
}
.binimaloi > div {
  flex: 1;
  border-radius: 16px;
  border: 2px solid black;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.4, 0.45, 1.4);
  cursor: pointer;
}
.binimaloi > div:hover {
  flex: 5;
}
@media (max-width: 600px) {
  .binimaloi-txt h1 {
    font-size: 18px;
    text-align: center;
    margin: 12px 0;
  }
  .binimaloi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    height: auto;
    max-width: 95%;
  }
  .binimaloi > div {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    transition: transform 0.2s ease;
  }
  .binimaloi > div:hover {
    transform: scale(1.03);
  }
}
@media (max-width: 360px) {
  .binimaloi {
    grid-template-columns: 225px;
  }
}
/* credit from tiktok :> */

.about img {
  justify-content: center;
  border: 2px solid black;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
}
#about a, .subton {
  background-color: #008CBA;
  color: white;
  border: none;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}
#about a:hover, .subton:hover {
  color: black;
  cursor: pointer;
}
nav {
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
  background-color: transparent;
}
nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  padding: 8px 16px;
  border-radius: 4px;
}
nav a:hover {
  background-color: #f0f8ff;
  color: #0077b6;
}
nav a:active {
  background-color: #cce4f7;
  color: #005f87;
}
nav a.active {
  background-color: rgba(240, 248, 255, 0.8);
  color: #0077b6;
}
table {
  border-collapse: collapse;
  width: 80%;
  margin: 20px auto;
}
th {
  background-color: #003366;
  color: white;
  font-family: 'Roboto', sans-serif;
  padding: 10px;
  border: 2px solid rgba(0, 0, 255, 0.5);
}
td {
  border: 2px solid rgba(0, 0, 255, 0.5);
  padding: 8px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}
input {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  padding: 10px;
}
input[type="text"], input[type="password"] {
  width: 80%;
  margin-bottom: 15px;
  border-radius: 10px;
}
input {
  text-align: center;
}
video {
  border: 2px solid black;
  border-radius: 10px;
  margin: auto;
}
.contact-us, .contact {
  text-align: center;
  margin: 20px auto;
  width: 80%;
  border: 2px solid black;
  border-radius: 10px;
  padding: 20px;
}
.contact-us textarea, .contact textarea {
  text-align: center;
}
ul, ol {
  list-style-position: inside;
  text-align: center;
  padding: 0;
}
/* CREDITS: https://pajasevi.github.io/CSSnowflakes/ */
.snowflake {
  color: #94f2f4;
  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}

footer {
  text-align: center;
  padding: 32px 16px;
  font-size: 14.4px;
  color: #666;
  border-top: 1px solid #eee;
}
/* for mobile support src: https://www.w3schools.com/cssref/atrule_media.php */
@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 8px 0;
 }
}
/* for mobile support src: https://www.w3schools.com/cssref/atrule_media.php */
#visitor {
  width: 30%;
}
