@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

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

form {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.main-sec > img {
  width: 100%;
  height: 80vh;
  background-size: center;
}

.btn-1 > button {
  padding: 10px 30px;
  outline: none;
  border: none;
  border: 2px solid #000;
  background-color: #021526;
  color: #fff;
  border-radius: 20px;
}

#div-2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

table{
  width: 17%;
  margin-right: 20px;
  margin-top: 30px;
  height:200px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

tbody tr th{
  padding-left: 20px;
}

tbody > button{
  padding: 5px 10px;
  outline: none;
  border: none;
  border-radius: 20px;
  color: #fff;
  background-color: #d13335;
  margin-left: 20px;
  position: relative;
  right: -50px;
  margin-top: 30px;
}
@media (max-width: 700px) {
  form {
    display: flex;
    flex-direction: column;
  }
  .btn-1 {
    align-self: center;
  }
  .main-sec > img {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  table{
    width: 30%;
  }
}

@media(max-width: 500px) {
  table{
    width: 100%;
  }
  tbody > button{
    margin-left: 0px;
    position: relative;
    right: -150px;
  }
  .main-sec > img{
    height: 40vh;
  }
}