    
    body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #191919;
    font-family: Arial, sans-serif;
    background-image: url('https://tylerwempe.com/images/mainIndexImage.jpg');
    background-size: auto;
    }

    .form-container {
    background-color: #323232;
    opacity: 0.8;
    padding: 30px;
    padding-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 60%;
    min-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    img {
    height: 50px;
    margin-bottom: 50px;
    }

    h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
    }

    input[type="email"] {
    width: -webkit-fill-available;
    padding: 8px 14px;
    margin: 6px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 18px;
    opacity: 1;
    }

    input[type="email"]:focus {
    outline: 2px solid #4780B6;
    }

    button {
    padding: 8px 14px;
    border-radius: 3px;
    background-color: #4780B6;
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
    border: none;
    margin-top: 6px;
    width: -webkit-fill-available;
    opacity: 1;
    }

    button:hover {
    border: 0;
    transform: scale(1.5);
    transform: translateY(0);
    box-shadow: 0 0 6px #4780B6;
    }

    #responseMessage {
    margin-top: 15px;
    margin-bottom: 10px;
    color: red;
    font-size: 16px;
    }

    a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 14px;
    }

    a:hover {
    text-decoration: underline;
    }
