@import url("https://fonts.googleapis.com/css2?family=Stack+Sans+Headline:wght@200..700&display=swap");

/* styles.css */
:root {
  --bg: #f5f5f5;
  --text: #333;
  --accent: #d60000; /* red color */
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Stack Sans Headline", sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  margin-top: 20px;
}

.logo img {
  max-width: 150px;
  height: auto;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  margin-top: -35vh;
}

h1 {
  font-size: 3rem;
  margin: 0 0 20px;
  line-height: 1.2;
  color: var(--accent); /* red text */
}

.crane-image {
  max-width: 220px;
  width: 100%;
  height: auto;
}
