Modified HTML and CSS to display UC

This commit is contained in:
2025-08-23 11:22:48 +00:00
parent 1e33071913
commit d273005d1c

View File

@@ -1,11 +1,36 @@
body {
margin: 0;
padding: 0;
background-color: #F5F5F5
font-family: Iceland;
line-height: 1.0
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
display: flex;
justify-content: center;
aligin-times: center;
background: linear-gradient(180deg, #f7d34b, #e0a82e);
/* fallback solid background */
background-color: #f7d34b;
font-family: Arial, san-serif;
}
/* Center the Image */
.container img {
max-width: 90%;
height: auto;
border: 6px solid #e0a82e;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}