
.btn{
  margin: 10px;
}
.home{
  display: flex;
  justify-content: center;
  align-items: justify;
  padding: 10px 25px;
  font-size: 1.3rem;
  color: #fff;
  border: none;
  border-radius: 15px;
  margin-top: 10px;
}

  /* Ad Section */
  .rek-section {
    background-color: #f9f9f9;
    padding: 0 0 5px 0 ;
    text-align: center;
  }

  .rek-box {
    background-color: #fff;
    border: 2px dashed #e1e1e1;
    padding: 0;
    /* Removed padding to ensure image fits the entire box */
    border-radius: 10px;
    width: 80%;
    height: 18%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Ensure no overflow if image exceeds the box */
  }

  .rek-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers the entire box */
    border-radius: 10px;
  }

  footer {
    background-color: #2f3640;

    padding: 20px 0;
    color: white;
    text-align: center;
  }

  footer a {
    color: #00a8ff;
    margin: 0 10px;
  }
