/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: red;
  text-decoration: none;
}

a:hover{
  color: white;
}

html, body {
  height: 100%;
  width: 100%;
  background-color: #000; /* Optional: black background */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

h1 {
	font-size: 3rem;
	color: white;
	opacity: 1.0;
}

/* Center container */
.container {
  display: grid;
  width: 500px;
  height: 500px;
  justify-content: center;
  padding: 0px;
  border-radius: 15px;
  border: 3px solid red;
  background-image: url("comingsoon.png");
  justify-content: center;
  align-items: center;
  opacity: 0.4;
}

.container2 {
  display: grid;
  text-align: center;
  width: 500px;
  height: 500px;
  justify-content: center;
  padding: 0px;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
}

/* Responsive image */
.center-image {
  width: 100%;
  max-width: 500px;
  height: auto;
}