@import url("https://fonts.googleapis.com/css?family=Open+Sans");

body {
  font-family: "Open Sans", sans-serif;
  height: 100%;
}

* {
  padding: 0;
  margin: 0;
}

.page {
  width: 80%;
  min-height: 80vh;
  border-radius: 8px;
  padding: 1rem;
  margin: 7vh auto;
  overflow: hidden;
}

/* Theme CSS */
body {
  background: rgba(43, 45, 66, 1);
  color: black;
}

.page {
  background: #edf2f4;
  box-shadow: 0 0 50px rgba(237, 242, 244, 0.15);
}

.browse {
  margin: 0 3rem 0 2.5rem;
}

.browse h5 {
  margin-bottom: 0.5rem;
}

.tabs-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 1rem;
}

.link-tab {
  height: 180px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column; /* Arrange items vertically */
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.link-tab a {
  cursor: pointer;
  border: none;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;

  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  color: black;

  display: flex;
  align-items: center;
  justify-content: center;
}

.link-tab img {
  margin-bottom: 10px; /* Space between image and text */
}

.link-tab:hover {
  background: rgba(12, 12, 13, 0.07);
  transition: 0.5s;
}