
ul{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}
li{
    list-style-type: none;
}
section{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}   
p {
    width: 200px;
    border: red;
    border-radius: 10px;
    background-color: grey;
    color:white;
    padding:10px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a {
    transition: linear 1s;
}

a:visited{
    color: orange;
}
a:link{
    color:orange;   
}
a:hover{
    color: red;
    font-size: 200px;
}

