Spaces:
Sleeping
Sleeping
File size: 1,252 Bytes
ff88581 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
html{
height: 100%
}
body {
background-color: brown;
background-image: url(wheat-image-new.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.container{
margin-left: auto;
margin-right: auto;
width: 1024px;
}
header {
height: 100px;
width: 1024px;
padding-top: 30px;
text-align: center;
}
nav {
background-color: rgba(0, 0, 0, 0.158);
height: 50px;
width: 1024px;
text-align: center;
padding-top: 25px;
}
main {
height: 500px;
width: 1024px;
}
nav a{
text-decoration: none;
padding-left: 50px;
padding-right: 50px;
color: white;
font-size: 18px;
}
footer {
background-color: rgba(0, 0, 0, 0.158);
height: 50px;
width: 1024px;
}
h1 {
text-align: center;
padding-top: 50px;
color: rgba(82, 55, 55, 0.774);
}
main p {
text-align: center;
padding-left: 150px;
padding-right: 150px;
color: white;
font-family:Arial, Helvetica, sans-serif;
font-size: 18px;
}
footer p{
font-family: Arial, Helvetica, sans-serif;
color: white;
padding-left: 150px;
padding-right: 150px;
font-size: 15px;
padding-top: 5px;
text-align: center;
}
|