
body {
   
    column-gap: 10px;
    row-gap: 10px;
    overflow-x: hidden;
    background-size: 500%;
    margin: 0%;
    color: rgb(8, 6, 6);
}

 .Table-Section>h1{
    font-family: cursive;
    font-size: 30pt;
    text-align: center;
    margin: auto;
    position: relative;
    bottom:3em;
 }
 img {
    width: 100%;
    height: 100%;
    float: right;
    grid-area: Main-Logo;
    z-index: 0;
}

h1 {
    text-align: center;
    grid-area: Header;
    margin: auto;
    width: 100%;
    z-index: 2;
}

/*Mental Health Section Start ---------------------------------------------------------------------*/
.Health-Card {
    width: 90%;
    height: 500px;
    border-radius: 10px;
    border: 3px solid rgb(14, 167, 60);
    margin: auto;
    margin-top: 5%;
    letter-spacing: 2px;
    font-family: cursive;
}

table{
    margin: auto;
    background: green;
    color: white;
    text-align: justify;
    border-collapse: collapse;
    grid-area: Table;
    position: relative;
    bottom: 7em;
    
}

td , th {
    padding: 40px;
    border: 5px solid white;
    font-size: 20px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.Table-Section{
    
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10%;
    flex-direction: column;
    align-items: center;
}

.Table-Text{
    margin: auto;
    font-family: cursive;
    padding: 10px;
    border: 2px solid rgba(39, 150, 5, 0.911);
    font-size: 20pt;
    width: fit-content;
    position: relative;
    bottom: 3em;
    
}

summary{
    background: green;
    width: 300px;
    padding: 10px;
    font-size: 15pt;
    font-family: arial;
    margin-bottom: 3%;
    cursor: pointer;
    
}

fieldset>details>p{
    background: #333;
    color: #fff;
    width: 400px;
    padding: 10px;
    font-size: 15pt;
    font-family: cursive;
    margin-top: -3%;
    
}

fieldset{
    margin: 10%;
    border: rgba(39, 150, 5, 0.911) 3px solid;
    position: relative;
    bottom: 10em;
    
}

summary:hover{
    transition: .2s;
    border-left: rgb(36, 177, 31) 5px solid;
    color: seashell;
}


legend{
    font-family: sans-serif;
    font-size: 20pt;
    border:rgba(39, 150, 5, 0.911) 3px solid;
    padding: 5px;
    margin-bottom: 10px;
    
}

 footer>label{
     font-size:20pt;
     font-family: arial;
     animation: 5s Border infinite;
     padding-bottom: 0%;
     padding-top: 0%;
     margin: 0%;
 }

  .mental-form{
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 5%;
        margin-bottom: 5%;
        position: relative;
        bottom: 27em;
        left: 20em;
        width: 50%;
        height: 50%;
        border: 2px solid #fff;
        border-radius: 0.7em;
  }
  .for{
    color: #fff;
    position: relative;
    bottom: 3.4em;
    font-size: 1.3em;
  }
  .sub{
    position: relative;
    font-size: 1.3em;
    padding: 0em 1em;
    border-radius: 0.5em;

  }
  .sub:hover{
    background-color: rgb(0, 255, 0);
    color: white;
    transition: 0.5s;
  }

/* CSS Animation Keyframes ---------------------------------------------------------------------*/

@keyframes Movement {
    0% {
        left: -70px;
        top: 100px;
    }

    50% {
        left: 25%;
        top: 200px;
        transform: rotateZ(140deg);
    }

    100% {
        left: -70px;
        top: 100px;
    }
}

@keyframes Movement-2 {
    0% {
        left: 500px;
        top: 300px;
    }

    50% {
        left: 5%;
        top: 200px;
        transform: rotateZ(140deg);
    }

    100% {
        left: 500px;
        top: 300px;
    }

}

@keyframes Movement-Back {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}



