body {
  background-image: radial-gradient(#F88,white);
}

/* Center the card container */
#card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 20px;
}

::-webkit-scrollbar {
  width: 10px;               /* width of the entire scrollbar */
}

::-webkit-scrollbar-track {
  background: transparent;        /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
  background-color: #389;    /* color of the scroll thumb */
  border-radius: 5px;       /* roundness of the scroll thumb */
  border: 0px solid #389;  /* creates padding around scroll thumb */
}

/* Card container */
.card {
  font-family: NotoColorEmoji, Roboto, sans-serif;
  font-size: 12px;
  width: 320px;
  height: 360px;
  border: 2px solid #389;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-image: radial-gradient(white, #5BC);
}

.card:hover{
  border: 2px solid #389;
}

/* Top half (image) */
.card-image {
  height: 180px;
  content-visibility: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Bottom half (HTML text) */
.card-content {
  height: 180px;
  padding: 12px;
  overflow-y: auto;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.welcome {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
}


.site {
	border: 1px solid #5BC;
	padding: 10px 0px 10px 0px;
	text-align: center;
	margin: 2px 2px;
	border-radius: 15px;
	width: 150px;
	float: left;
	background-image: radial-gradient(white, #5BC);
}


/* Style for the search bar */
#search-bar {
  width: 95%;
  padding: 10px;
  margin: 20px auto;
  display: block;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

#logo {
  width: 95%;
  overflow: hidden;
  padding: 0px;
  margin: 20px auto;
  display: block;
  font-size: 16px;
  border: 0px solid #ccc;
  border-radius: 0px;
  box-sizing: border-box;
}

#intro {
  width: 95%;
  overflow: hidden;
  padding: 0px;
  margin: 20px auto;
  display: block;
  font-size: 16px;
  border: 0px solid #ccc;
  border-radius: 0px;
  box-sizing: border-box;
}