/* Link Styles */
a:link, a:visited, a:hover, a:active {
  color: black;
  text-decoration: none;
}

/* Body and Headings */
body {
  font-family: Arial, sans-serif;
  background-color: rgb(115, 155, 208);;
  color: rgb(0, 0, 0);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2 {
  text-align: center;
  color: rgb(0, 0, 0);
}

/* Search Container */
.search-container {
  text-align: center;
  margin-bottom: 20px;
}

#searchInput {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: rgb(255, 205, 125);
  color: black;
  font-size: 16px;
  width: 300px;
  outline: none;
}

/* Button Container */
.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.button-wrapper {
  position: relative;
  display: inline-block;
}

/* BUTTON FIXED */
.button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;
  padding: 15px 20px;
  background-color: rgb(170, 212, 229); /* FIXED */
  color: white;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 200px;
  width: 100%;
}
.Majorbutton {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;

  /* doubled padding */
  padding: 30px 40px;

  background-color: rgb(170, 212, 229);
  color: white;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;

  /* doubled max width */
  max-width: 400px;
  width: 100%;

  /* optional: makes the text feel proportionally bigger */
  font-size: 1.4rem;
}

/* HOVER FIXED */
.button:hover {
  background-color: rgb(0, 163, 108); /* FIXED */
}

/* Button Image */
.button img {
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
}

/* Extra Button Container */
.button-container1 {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Favicon Modal */
#faviconSelection img {
  width: 128px;
  height: auto;
  display: inline-block;
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: red;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  text-align: center;
  border-radius: 5px;
  transform: rotate(-15deg);
  z-index: 1;
}

