*{
    margin: 0;
    padding: 0;
    overflow-y: visible;
}
.header{
    width: 100%;
    height: 100px;
    background-color: #2F5496 ;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.header button{
    height: 30px;
    width: 100px;
    background-color: beige;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.5s ease-in;
    border-radius: 5px;
}
.header button:hover{
    box-shadow: 4px 4px 6px black;

}
#para{
    width: 50%;
    height: 80vh;
    border: none;
    text-align: left;
    background-color: beige;
    padding: 50px 50px;
    box-shadow: 10px 10px 20px grey;
}
#para:active{
    border: none;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    
    background-color: #c0c0c0 ;
}
