body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

.container {
    text-align: center;
    margin-top: -100px;
}

.icon {
    background: url('NudgerLogo.png') no-repeat center center;
    background-size: cover; 

    
    width: 400px;
    height: 150px;
    display: inline-block; 
}


h1 {
    color:  lightcoral;
    font-size: 2em;
}

p {
    color: #555;
    font-size: 1.2em;
    margin-bottom: 20px;
}

#emailInput {
    margin-top: 20px;
    padding: 15px;
    font-size: 16px;
    width: 300px;
    border: 2px solid #007bff;
    border-radius: 5px;
    outline: none;
}

#subscribeBtn {
    margin-top: 10px;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#subscribeBtn:hover {
    background-color: #0056b3;
}


@media (max-width: 600px) {
    .container {
        margin-top: 0;
        width: 90%;
        height: 90%;

    }
    .icon{
        width: 325px;
        height: 120px;
    }
}