:root {
--primary-background: #FF8800;
--secondary-background: #8F3D00;
--geometric-one: rgba(255, 166, 64, 0.7);
--geometric-two: rgba(204, 102, 0, 0.7);
}
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
overflow: hidden;
}
.background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, var(--primary-background), var(--secondary-background));
z-index: -10;
}
.geometric-top-right {
position: fixed;
top: 0;
right: 0;
width: 200px;
height: 200px;
background-color: var(--geometric-one);
border-bottom-left-radius: 100px;
z-index: -5;
}
.geometric-bottom-left {
position: fixed;
bottom: 0;
left: 0;
width: 300px;
height: 300px;
background-color: var(--geometric-two);
border-top-right-radius: 150px;
z-index: -5;
}
.container {
position: relative;
text-align: center;
background-color: rgba(255, 255, 255, 0.9);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.3);
max-width: 600px;
margin: 20vh auto 0;
z-index: 1;
}
h1 {
color: #8F3D00;
margin-top: 0;
}
.status {
display: inline-block;
background-color: #4CAF50;
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
margin-top: 1rem;
}
p {
color: #333;
line-height: 1.5;
}
