56 lines
867 B
CSS
56 lines
867 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-image: url('../Picture/background.jpg');
|
|
background-size: cover;
|
|
background-position: center;
|
|
text-align: center;
|
|
color:rgb(96, 74, 45);
|
|
}
|
|
|
|
header, footer {
|
|
background-color: rgb(255, 172, 70);
|
|
color:rgb(161, 116, 58);
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
section {
|
|
padding: 20px;
|
|
margin: 20px auto;
|
|
max-width: 800px;
|
|
background-color: rgba(255, 195, 122, 0.8);
|
|
|
|
}
|
|
|
|
h2 {
|
|
color: #333;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table, th, td {
|
|
border: 1px solid #000000;
|
|
padding: 10px;
|
|
}
|
|
|
|
#animal-gallery {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 20px;
|
|
}
|
|
|
|
#animal-gallery img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|