* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    background-color: #ecd19e;
}

/* Kontejner pro hlavní obsah newsletteru */
.newsletter {
    width: 500px;
    height: 500px;
    padding-left: 30px;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(236, 209, 158, 0.7), rgba(236, 209, 158, 0.7)), url("img/flowers.jpg");
    background-size: cover;
    background-position: center;
    color: #251801;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transform: scale(0.6);
}

.newsletter p {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 45px;
    text-transform: uppercase;
}

.newsletter h1 {
    margin-bottom: 20px;
    font-size: 60px;
    text-transform: uppercase;
}

/* Input a button vedle sebe */
.inline{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

input[type="email"] {
    width: 300px;
    height: 50px;
    margin-right: 10px;
    padding-left: 5px;
    font-size: 20px;
    background-color: #f9ead1;
    border: none;
    border-bottom: 1px solid #251801;
    outline: none;
}

button {
    width: 120px;
    height: 50px;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #ef9139;
    border: 2px solid #251801;
    border-radius: 12px;
    cursor: pointer;
}

button:hover {
    background-color: #e37001;
}
