﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background-color: #480109; /* maroon */
  font-family: 'Arial', sans-serif;
 
/* Logo top-left */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 220px;   /* adjust as needed */
}

/* Centered "Coming Soon" */
.center-text {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-text h1 {
  color: #d7912c; /* gold-ish / off-white */
  font-size: 64px;
  letter-spacing: 2px;
  font-style:italic;
  font-family:Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-weight:bold
}
@media only screen and (max-width: 600px) {
  .container {
    flex-direction: column; /* Stacks items vertically on smaller screens */
   
    
  }