/* styles.css */
@font-face {
  font-family: 'Elianto';
  src: url('../fonts/elianto.otf') format('opentype'),
  url('../fonts/elianto.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f0f0f0; /* Light grey background for the entire page */
  color: #333;
  text-align: center;
}

.container {
  background: url('../images/geneva-lake.jpg') no-repeat center center; 
  background-size: cover;
  background-attachment: fixed;
  background-color: rgba(255, 255, 255, 0.8); /* White with transparency */
  margin: 0 auto;
  max-width: 1024px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow for depth */
}

.header, .main, .footer {
  padding: 20px;
  margin: 10px 0;
  background-color: rgba(255, 255, 255, 0.8); /* Background color with transparency for sections */
  border-radius: 8px;
}

.header {
  text-align: center;
}

.header h1 {
  margin: 0;
  font-family: 'Elianto', sans-serif;
  font-size: 4em; /* Large font size for the name */
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #000000; /* Outline with black color */
}

.main {
  border-radius: 8px;
}

.about, .portfolio, .contact {
  margin: 20px 0;
}

h2 {
  color: #3498db;
  /* -webkit-text-stroke: 0.5px #3498db; /* Outline with blue color */
  font-weight: bold;
  font-family: 'Elianto', sans-serif;
  text-align: center;
}

.footer {
  text-align: center;
  font-weight: bold;
  font-size: 0.9em; /* Slightly smaller font size for the footer */
}

@media (max-width: 768px) {
  .container {
	padding: 10px;
  }
}
