body{
    background-image:url("Paper.jpg");
    background-size: 250%;
    background-attachment: fixed;
	background-repeat: no-repeat;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}
#headline {
    grid-area: head;
    background-color: rgba(80, 210, 255, 0.3);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#para1{
    grid-area: one;
    background-color: rgba(80, 210, 255, 0.3);
    padding: 10px;
    border-radius: 5px;
    width: 110px;
}
#para2{
    grid-area: two;
    background-color: rgba(80, 210, 255, 0.3);
    padding: 10px;
    border-radius: 5px;
    width: 110px;
}
#image{
    grid-area: image;
    width: 100%;
    border-radius: 5px;
}
#para3{
    grid-area: three;
    background-color: rgba(80, 210, 255, 0.3);
    padding: 10px;
    border-radius: 5px;
    width: 110px;
}
#para4{
    grid-area: four;
    background-color: rgba(80, 210, 255, 0.3);
    padding: 10px;
    border-radius: 5px;
    width: 110px;
}
#footer{
    grid-area: footer;
    background-color: rgba(80, 210, 255, 0.3);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
#grid{
    display: grid;
    grid-template-areas:
    'head head head head'
    'image image image image'
    'one two three four'
    'footer footer footer footer';
    gap: 10px;
    padding: 10px;
    width:580px;
    margin: auto;
}