xxxxxxxxxx
76
/*
* Based on the original Pizza Parlor application by
* Jessie Douglas (@JessDouglas)
*/
nav {
display: none
}
body {
width: 100%;
margin: 0;
padding: 0;
background-color: aliceblue;
font-family: "IBM Plex Sans", "Helvetica", sans-serif;
}
header {
padding: 20px;
text-align: center;
background: linear-gradient(90deg, red, white, white, green);
}
section {
padding: 20px;
margin: 40px;
background-color: lightblue;
}
h1 {
text-align: center;
font-weight: bold;
font-size: 64px;
}
h3 {
text-align: center;
font-family: cursive;
}
#menu div {
padding: 20px;
margin: 20px;
background-color: slategray;
color: white;
display: flex;
flex-direction: column;
}
h2 {
font-size: 34px;
}
h4 {
font-size: 30px;
}
p {
margin-top: 30px;
}
h5 {
font-size: 30px;
text-align: right;
}
img {
width: 100%;
max-width: 600px;
}
footer {
padding: 30px;
text-align: center;
background-color: lightgreen;
}