Skip to content
Merged
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@
<title>Trend Fit App</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<style>

body::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="100%" x2="100%" y2="0" stroke="white" stroke-opacity="0.05" stroke-width="10" /></svg>');
background-repeat: repeat;
z-index: 0;

}

body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #FF8C00, #FF4500);
Expand All @@ -15,6 +26,8 @@
justify-content: center;
align-items: center;
min-height: 100vh;
position: relative;
z-index: 1;
}

.container {
Expand Down