.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
.bg_androidapk{
    background-image: url(https://miro.medium.com/v2/resize:fit:1400/1*vgXYMhxApOziD3sPeKld_g.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position-y: center;
    width: 100%;
    height: 414px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* background-attachment: inherit; */
    background-position-y: -300px ;
}
.bg_androidapk::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.40);
  width: 100%;
  height: 100%;
  position: absolute;
  }
  .chose_list img{
    width:   495px; ;
  }

  .title {
    position: absolute;
    top: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    overflow: visible;
    
  }
  .title h1 {
    font-family: SupercellText-Medium, Helvetica, Arial, sans-serif;
    font-size: 45px;
    margin-bottom: 13px;
  }



  .title p a{
    display: inline-block;
    color: white;
    text-decoration: none;
  font-size: 19px;
  font-style: italic;
  background: red;
  padding: 4px 14px;
  border-radius: 4px;
  box-shadow: 2px 1px 1px 0px black;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
  }
  .title p a:hover{
    transform: scale(1.2);
    background: rgb(110, 1, 1);
  }