html,
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-width: 60vw;
}

.header-wrapper {
  display: flex;
  justify-content: center;
  box-shadow: 0px 0px 10px #466580;
  min-height: 60px;
  background-color: aliceblue;
  position: relative;
}

.button {
  border: none;
  box-shadow: 5px 5px 10px #466580;
  border-radius: 10px;
  min-height: 2.5rem;
  min-width: 5rem;
  background-color: white;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #466580;
}

.search-wrapper {
  min-width: 100vw;
  background-color: aliceblue;
  padding: 0 0 7rem 0;
}

.main-wrapper {
  display: flex;
  min-width: 100vw;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5rem;
  background-color: aliceblue;
}

.content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.title {
  text-align: center;
  font-size: 4rem;
  padding: 3rem 0 0 0;
}

.search {
  padding: 0;
  min-width: 35rem;
  height: 2.5rem;
  border-style: none;
  outline: none;
}

.search-bar {
  border: 1px solid;
  border-radius: 10px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem 0 0.5rem;
  box-shadow: 5px 5px 10px #466580;
}

.search-icon {
  cursor: pointer;
}

.intruction-wrapper {
  min-width: 100vw;
  background-color: aliceblue;
}

ul {
  padding: 0;
}

.section-group {
  display: flex;
  flex-direction: row;
  box-shadow: 5px 5px 10px #466580;
  border-radius: 10px;
  min-width: 50vw;
  height: 2.5rem;
  background-color: white;
  position: relative;
  z-index: 2;
}

.section {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.instruction {
  padding: 0 0 0 1rem;
  margin: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h4 {
  padding: auto;
  margin: auto;
}

.step {
  display: flex;
  align-items: center;
  padding: 1rem 0 0 0;
  min-width: 45vw;
  box-shadow: 5px 5px 10px #466580;
  border-radius: 10px;
  padding-bottom: 0.7rem;
  background-color: white;
  position: relative;
  z-index: 1;
}

img {
  width: 100%;
  max-width: 570px;
  height: auto;
  padding: 1rem;
}

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

.jc-center {
  justify-content: center;
}

.img {
  display: flex;
  min-width: 44vw;
  border: 2px solid;
  border-radius: 10px;
  justify-content: center;
  background-color: white;
  position: relative;
  z-index: 0;
}

.footer {
  display: flex;
  justify-content: center;
  background-color: aliceblue;
  box-shadow: 0 -5px 10px -5px #466580;
}

.result {
  padding-top: 5rem;
}

table {
  border-collapse: separate;
  border: 1px solid;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #466580;
}

td,
th {
  border-left: solid black 1px;
  border-top: solid black 1px;
  min-width: 10vw;
}

th {
  background-color: aliceblue;
  border-top: none;
}

td:first-child,
th:first-child {
  border-left: none;
}

tbody > tr > td:nth-child(2) {
  text-align: center;
}

tbody > tr:nth-of-type(even) {
  background-color: aliceblue;
}

tbody > tr:nth-of-type(odd) {
  background-color: white;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .title {
    font-size: 3rem;
  }

  .search {
    min-width: 30rem;
  }

  .section-group {
    min-width: 60vw;
  }

  .step {
    min-width: 55vw;
  }

  img {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
  }

  .search {
    min-width: 20rem;
  }

  .section-group {
    min-width: 80vw;
  }

  .step {
    min-width: 75vw;
  }

  img {
    max-width: 400px;
  }

  .title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .header-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .header {
    min-width: 100vw;
  }

  .search {
    min-width: 15rem;
  }

  .section-group {
    min-width: 90vw;
  }

  .step {
    min-width: 85vw;
  }

  img {
    max-width: 300px;
  }

  .title {
    font-size: 2rem;
  }
}
