
*{
    margin: 0;
    padding:0;
    border: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

main{
    background-color:rgba(20, 116, 1, 0.5);
    width: 800px;
    max-width: 100%;
    /* height: 1600px; */
    margin: 0px auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
    padding: 10px;
    padding-bottom: 20px;

}
section{
    width: 400px;
    max-width: 100%;
    height: auto;
    text-align: center;

    /* align-items: center; */
}
div{
    margin-top: 5px;
}
p{
    color: azure;
    margin: 10px;
}
button{
    background-color: rgb(255, 255, 255);
    padding: 15px 30px;
    margin: 5px;
    text-align: center;    
    border-radius: 5px;
    cursor: pointer;


    /* font-size: 16px; */
}
h3{
    width: 100%;
    color: white;
    font-size:16px;
    text-align: center;
}
img{
    margin-top: 10px;
    margin-bottom: 0px;
    width: 50%;
    height: 100px;
    border-radius: 10px;
}
#div{
    width: 100%;
    height: 30px;
    background-color: red;
}








