*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: "montserrat";    
}

body { 
    background-color: #fafafa;
}

header {
    margin: auto;
    background-color: #ff2450;
    padding: 1em;
    width: 50%;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    text-align: center;
    font-weight: 400;
    color: #16374c;
}

img {
  width: 50%;
  height: auto;
    object-fit: cover;
}

.button {
    text-align: center;
}

button {
    border: none;
    font-size: 1.5em;
    padding: 0.5em;
    border-radius: 0.5em;
    font-weight: 500;
    color: #194d95;
    background-color: #FAFAFA;
}

  /* Small devices (landscape phones, less than 768px) */
  @media (max-width: 767.98px) {
    header {
        width: 100%;
    }

    .container, img {
        width: 100%;
    }
  }


 /* media */

  /* Medium devices (tablets, less than 992px) */
  @media (max-width: 991.98px) {
  header {
        width: 100%;
    }

    img, .container {
        width: 90%;
    }

  }

  /* X-Small devices (portrait phones, less than 576px) */
  @media (max-width: 575.98px) {
    header {
        width: 100%;
    }

    img, .container {
        width: 100%;
    }

  }