/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  color: #fff;
}

/* Background image */
body {
  background: url("images/sebastian-unrau-sp-p7uuT0tw-unsplash.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* overlay */
.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main content box */
.content-box {
  background: rgba(15, 51, 24, 0.432);
  color: #fff;
  padding: 2rem 3rem;
  border-radius: 16px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  backdrop-filter: blur(5px); /* frosted glass effect */
}

.content-box h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.content-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Button */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #222;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.button:hover {
  background: #222;
  color: #fff;
}

/* Overlapping image */
.corner-image {
  position: absolute;
  bottom: -40px;   /* moves further outside */
  right: -40px;    /* sticks out more on the right */
  width: 140px;    /* slightly bigger for emphasis */
  height: auto;
  border-radius: 12px;
  
}