/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
}

body {
  background: url('picture.jpg') no-repeat center center fixed; /* Replace with your background image */
  background-size: cover;
  color: white;
  display: flex;
  justify-content: flex-end; /* Aligns content to the bottom of the page */
  align-items: flex-end;
  margin: 0;
}

.company-name-container {
  width: 100%;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2); /* Adds subtle background behind the text */
}

.company-name {
  font-size: 2.5em;
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.7); /* Transparent white color */
}

@media (max-width: 768px) {
  .company-name {
    font-size: 2em;
    letter-spacing: 3px;
  }
}
