@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
    font-family: 'Space Mono', monospace;
}

/* layout and align*/ 

body{

    background-color: rgb(237, 241, 214);
    margin: 0;
    padding: 0;

}

section{

    display: grid;
    place-items: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    scroll-snap-align: start;

}

.containers{
    scroll-snap-type: y;
}

form{

    background-color: rgb(157, 192, 139);
    height: 380px;
    width: 580px;
    border-radius: 50px;
    max-width: 90%;
    

}

.form-control{

    width: 450px;
    height:30px;
    margin: 10px;
    border: none;
    border-radius: 30px;
    box-shadow: 5px 5px 5px  rgba(0, 0, 0, 0.479);
    text-indent: 10%;
    font-weight: bold;
}

.section-2{

    /*background-color: rgb(157, 192, 139) ;*/
    overflow-y: scroll;   
    scroll-padding-top: 100px;
    max-width: 90%;
    padding-top: 50px;
    /*padding: 0px 30px 50px 30px ;*/

    /* hide overflow scrollbar*/
    -ms-overflow-style: none;
    scrollbar-width: none;

    /* show on button click*/
}

.section-2::-webkit-scrollbar{
    display: none;
  }

.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: rgb(96, 153, 102);
}

.footer-content{
    display: flex;
    flex-direction: row;
    place-content: center;
    font-size: 15px;
    word-spacing: 10px;
    column-gap: 30px;
    
}

/* text formatting*/

h3{
    font-size: xx-large;
}

p{
    text-align: left;
    white-space: pre-line;
}

em{
    color: rgb(96, 153, 102);
}
/* styling and animate */

.submit-btn{
    
    background-color: rgb(96, 153, 102);
    border: none;
    border-radius: 30px;
    padding-left:30px;
    padding-right: 30px;
    height: 50px;
    width: 150 px;
    color: black;
    font-weight: bold;
    box-shadow: 5px 8px 5px  rgba(0, 0, 0, 0.479);
}

.submit-btn:hover{
    background-color: rgba(245, 245, 220, 0);
    border-style: solid;
    border-color: black;
    border-width: 2px;
    box-shadow: none;
}





