body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    color: white;
  }
  
body {
    background: url("background1.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
.content {
    max-width: 1000px;
  }
  
.content h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #f8c94e;
  }
  
.content p {
    font-size: 1.2em;
    margin: 10px 0;
  }
  
.contact a {
    color: #f8c94e;
    text-decoration: none;
    font-weight: bold;
  }
  
.contact a:hover {
    text-decoration: underline;
  }
  
