/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	background-image:url("index_files/image001.png");
	background-repeat: no-repeat;
  	background-size: cover;
    	font-family: Arial, sans-serif;
    	color: #333;
    	display: flex;
    	flex-direction: column;
    	align-items: center;
    	background-color: #f4f7f6;
    	min-height: 100vh;
    	text-align: center;

}

/* Header Styles */
header {
    background-color: #263238;
    color: #fff;
    width: 100%;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
}

/* Content Section */
.content {
    max-width: 800px;
    padding: 50px 20px;
}

.content h2 {
    font-size: 1.5em;
    word-spacing: 30px;
    margin-bottom: 10px;
    color: #2196f3;
}

.content p {
    font-size: 1.1em;
    color: #555;
}

/* Footer */
footer {
    width: 100%;
    padding: 10px 0;
    background-color: #263238;
    color: #fff;
    position: absolute;
    bottom: 0;
    text-align: center;
}

/* Background Graphics */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0f7fa 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, #e0f7fa 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, #e0f7fa 25%, transparent 25%),
                linear-gradient(45deg, #e0f7fa 25%, #f4f7f6 25%);
    background-size: 100px 100px;
    z-index: -1;
    opacity: 0.1;
}
