body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

.container {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    border: 1px solid #000;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
    
}

.headline-text {
  color:#fff; 
  font-family: 'Courier New', Courier, monospace;            
  font-style: italic;
  font-size: 16pt;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    filter: none;
    -webkit-filter: none;
    }

  .shadow {
	box-shadow: 10px 20px 15px rgba(1,1,1, 0.4);
  border-radius: 0px;
}

.bg-image {
  background-image: url("./cloud.png");
  background-color: #cccccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
 /* Add the blur effect */
 filter: blur(8px);
 -webkit-filter: blur(8px);
 
 /* Full height */
 height: 100%; 
 
}