* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #fff;
  display: block;
}

.title {
  background-color: #806bdc;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
}

.navbar > a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 4rem;
  padding: 1rem;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4rem;
  text-align: center;
}

.item img {
  width: 100%;
  max-width: 100px;
  height: auto;
}

.item p {
  margin-top: 0.5rem;
  font-weight: bold;
}
.item:hover {
  transform: scale(1.3);
  transition: transform 0.3s ease;
}
.maincon {
  padding: 2rem 5rem;
  box-sizing: border-box;
  background-color: lightgray;
  max-width: 100%;
}
.responsive-img {
  width: 100%;
  height: 60vh;
  display: block;
  object-fit: fill;
}
.table-head {
  display: flex;
  justify-content: center;
  margin: 3rem 0 1rem 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 1rem 2rem;
  border: 1px solid #555;
  text-align: left;
}

thead th {
  background-color: #7a5fc0;
  color: white;
  font-weight: bold;
  text-align: center;
}

del {
  color: #000;
  margin-right: 5px;
}
.side-info {
  padding: 2rem 6rem 0 2rem;
}
.side-info p {
  color: #8b8686;
  font-size: 0.8rem;
  padding-top: 1rem;
}
.side-info > h2 {
  color: rgb(123, 121, 121);
}
ul {
  padding-left: 0.8rem;
  color: #8b8686;
  font-size: 0.6rem;
}
footer{
   background-color: black;
    color: white;
    padding: 2rem;
    text-align: center;
}
@media (max-width: 900px) {
  .navbar {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    gap: 2.5rem;
    padding: 0.5rem;
  }
.item:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}
  .navbar .item {
    flex: 0 1 auto;
    min-width: 3rem;
  }
  .maincon {
    padding: 1rem;
  }
  .responsive-img {
    max-width: 900px;
    max-height: 250px;

    margin: 0 auto;
    border-radius: 8px;
  }
  th,
  td {
    font-size: 0.8rem;
    padding: 1rem 0.5rem;
  }
  th,
  td {
    overflow: auto;
  }
}
