* {
    box-sizing: border-box;
  }

  .news-letter {
    font-family: Georgia, "Times New Roman", Times, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
    margin: 0;
  }

  .news-box {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 500px;
  }

  .news-box h2 {
    margin: 10px 0 0;
  }

  .news-box p {
    color: #312940;
    margin: 10px;
  }

  .news-box img {
    max-width: 100%;
  }

  .form-newsletter {
    position: relative;
    margin: 15px 0 10px;
  }

  .news-letter-input {
    border: 0;
    border-radius: 50px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    display: block;
    font-size: 14px;
    height: 42px;
    padding: 12px 25px;
    width: 100%;
  }

  .sub-btn {
    background-color: #e50815;
    border: 0;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    height: 42px;
    padding: 12px 25px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .news-letter-input:focus,
  .sub-btn:focus {
    outline: 0;
  }