diff --git a/resources/css/index.css b/resources/css/index.css index 870cb09..311453e 100755 --- a/resources/css/index.css +++ b/resources/css/index.css @@ -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); +}