    .Parent_Container {
        width: 80%;
        padding: 10px;
        margin: auto;
        background-color: rgba(255, 192, 203, 0.473);
        border-width: 10%;
        border-color: rgb(255, 112, 136);
        border-style: solid;
        color: palevioletred;
        border-radius: 2%;
        
    }
    .Child_Container {
        text-align: center;
        display: none;
        grid-template-areas: 
        "name name"
        "description image"
        "flin flin";
      grid-template-columns: 1fr 3fr;
      padding: 5%;
      justify-content: space-between;
      gap: 10px ;
    }
    body {
     background-image: url("https://i.pinimg.com/originals/be/5a/11/be5a11b56780bf2606179b60a595c79f.gif");
     background-repeat: no-repeat;
     background-size: cover; /* Scales the image to cover the entire element */
        /* Other options: 'contain', 'auto', specific pixel values, percentages */
    }

    .Container {
        text-align: center;
    }

    #btn {
        border:10% ;
        border-color: rgb(255, 151, 169);
        border-radius: 10%;
        transition-duration: 0.4s;
        background-color: rgba(255, 192, 203, 0);
        font-family: Georgia, serif;
        color: palevioletred;
    }

    #btn:hover {
    background-color: rgb(255, 186, 200);
    }

    #icon {
        width: 200px;
        height: 200px;
    }
