body{
  background-image: url("pexels-life-of-pix-7919.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.advice-container{
  box-sizing: border-box;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(255, 255,255,0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  margin: auto;
  margin-top: 100px;
  
}

.advice-info{
  font-family: 'Times New Roman', Times, serif;
  color: aliceblue;
  text-align: center;
  box-sizing: border-box;
  width: 230px;;
  height: 50%;
  overflow: hidden;
  margin-top: 50px;
  border-radius: 10px;
}










@media screen and (max-width: 430px){
  body{
    background-image: url("pexels-life-of-pix-7919.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  
  .advice-container{
    box-sizing: border-box;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255,255,0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    margin: auto;
    margin-top: 100px;
    
  }
  
  .advice-info{
    font-family: 'Times New Roman', Times, serif;
    font-size: x-small;
    color: aliceblue;
    text-align: center;
    box-sizing: border-box;
    width: 230px;;
    height: 50%;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 10px;
  }

}