 @import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

 body{
 font-family: "Varela Round", sans-serif;
    /* background-color: linear-gradient(135deg, rgba(103, 118, 157, 1) 0%, rgba(234, 247, 226, 1) 100%);
    background-image: linear-gradient(135deg, rgba(103, 118, 157, 1) 0%, rgba(234, 247, 226, 1) 100%); */

    background-color: rgba(247, 242, 226, 1);
    background-image: linear-gradient(135deg, rgb(247, 229, 226) 0%, rgba(103, 118, 157, 1) 100%);
    /* background-color: rgba(148, 163, 170, 1);
    background-image: linear-gradient(360deg, rgba(148, 163, 170, 1) 0%, rgba(198, 181, 155, 1) 100%); */
    height: 100vh;
    width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    transition: ease-in;
 }

main
{
    gap: 5em;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr ;
}

 header
 {
    text-align: center;
 }

 section
 {
    background-color: rgba(27, 122, 210, 0.4);
    text-align: center;
    border: solid grey 0.2em;
    border-radius: 2em;
    padding: 2em;
    transition: 1s;
 }

 section:hover{
    background-color: rgb(54, 52, 48);
    border: solid rgb(255, 0, 0) 0.2em;
    color: white;
    transition: 0.3s;
 }
 
 #description
 {
    font-size: 70%;
 }