/* Page background & overall font */
body {
  margin: 0;
  padding: 0;
  background: url("images/background1.jpg") no-repeat center center fixed;
  background-size: cover;
  /* We'll assign the Dalek font at the end, once it's declared */
}

/* Semi-transparent container wrapping everything */
.container {
  background-color: rgba(51,51,51,0.75);
  color: #F65100;  /* or your chosen “bronze” color */
  width: 80%;
  max-width: 600px;
  margin: 2rem auto; 
  padding: 2rem;
  border-radius: 8px;
  overflow: auto; /* ensures container wraps floated or inline elements */
}

/* Logo uses its natural size */
.logo {
  display: block;
  margin: 0 auto 2rem;  /* center horizontally, add bottom margin */
  width: 92px;   /* If you want a specific size, keep this; otherwise remove. */
  height: auto;
}

h1 {
  /* Center the title horizontally */
  text-align: center;
  /* Make it bigger than default */
  font-size: 3rem; /* Adjust to your liking */
  margin: 0 0 1rem; 
  color: inherit; /* same color as container if you want */
}

h3 {
  text-align: center;
  font-size: 1.5rem; /* Slightly smaller than H1 */
  margin: 0 0 2rem;
  color: inherit;
}

p {
  margin: 0 0 2rem;  
  line-height: 1.6;
  color: inherit;
}

/* The "Play" button. We remove 'float: center;' (invalid).
   Instead, center by making it block-level & using margin: auto. */
.play-btn {
  display: block;             /* Let us use margin auto for horizontal centering */
  margin: 2rem auto 0 auto;   /* top:1rem, bottom:0, auto left/right => center */
  
  width: 200px; 
  height: 62.5px;
  background: url("images/play-button.png") no-repeat center center;
  background-size: contain;
  
  border: none;
  border-radius: 8px;
  cursor: pointer;

  /* Use the SAME font as everything else => 'inherit' from body/container */
  font: inherit;        /* This inherits both font-family and size from parent */
  line-height: 50px;    /* vertically center the text */
  color: inherit;       /* same color (#F65100) as container text if desired */

  text-align: center;
  text-shadow: 0 0 4px #000;  /* optional if your button background is bright */
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.05);
}

/* 1) Define the DalekPinpointBold font face */
@font-face {
  font-family: "DalekPinpointBold";
  src: url("fonts/DalekPinpointBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* 2) Now apply DalekPinpointBold site-wide by default */
body {
  font-family: "DalekPinpointBold", sans-serif;
}

