|
body { |
|
font-family: 'Bellota', cursive; |
|
font-size: 18px; |
|
margin: 0; |
|
padding: 0; |
|
background-color: #f2f2f2; |
|
} |
|
|
|
header { |
|
background-color: #333; |
|
color: #fff; |
|
padding: 20px; |
|
text-align: center; |
|
} |
|
|
|
.header-content { |
|
display: flex; |
|
align-items: center; |
|
} |
|
|
|
.logo { |
|
width: 80px; |
|
height: 80px; |
|
margin-right: 20px; |
|
} |
|
|
|
header h1 { |
|
font-size: 24px; |
|
} |
|
|
|
main { |
|
padding: 20px; |
|
text-align: center; |
|
} |
|
|
|
section { |
|
background-color: #fff; |
|
padding: 20px; |
|
border-radius: 10px; |
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); |
|
margin-bottom: 20px; |
|
} |
|
|
|
h2 { |
|
font-size: 24px; |
|
color: #333; |
|
margin-bottom: 10px; |
|
} |
|
|
|
.gradio-app { |
|
margin-top: 20px; |
|
} |
|
|
|
footer { |
|
background-color: #333; |
|
color: #fff; |
|
text-align: center; |
|
padding: 10px 0; |
|
font-size: 14px; |
|
} |
|
|