        @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

        body, html {
            height: 100%;
            margin: 0;
            padding: 0;
            font-family: 'Roboto', sans-serif;
            background-image: url('background-texture.jpg');
            background-repeat: repeat;
            background-size: cover;
            /* filter: grayscale(100%) brightness(120%) contrast(90%); */
            display: flex; 
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-align: center;
        }

        .overlay {
            /* background-color: rgba(245, 241, 230, 0.8); */
            padding: 30px;
            border-radius: 10px;
        }

        .logo-container img {
            max-width: 30%;
            height: auto;
            margin-bottom: 20px;
        }
        .slogan {
              font-size: 1.5em;
            color: #6b4a3e;
        }
        .coming-soon {
            font-size: 2em;
            color: #6b4a3e;
            margin-bottom: 15px;
        }

        .email-input {
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
            font-size: 1em;
            width: 250px;
            outline: none;
            vertical-align: middle;
        }

        .submit-button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            background-color: #6b4a3e;
            color: white;
            cursor: pointer;
            margin-top: 10px;
        }

        .submit-button:hover {
            background-color: #56392f;
        }