@charset "UTF-8";
/* CSS Document */
/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #111111;
}

.holding-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.content-wrap {
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.logo-placeholder {
  margin-bottom: 30px;
}

.logo-placeholder img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* If logo file is not uploaded yet, this gives the space some structure */
.logo-placeholder img[src="versatile-cones-logo.png"] {
  border: 2px dashed #cccccc;
  padding: 20px;
  background: #fafafa;
}

.text-block h1 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.text-block p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #444444;
}

@media (max-width: 600px) {
  .text-block h1 {
    font-size: 28px;
  }

  .text-block p {
    font-size: 16px;
  }

  .logo-placeholder img {
    max-width: 420px;
  }
}
