37 lines
495 B
CSS
Executable File
37 lines
495 B
CSS
Executable File
* {
|
|
|
|
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);
|
|
}
|