body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 1rem;
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
  }
  
  .left-side {
    flex: 1 1 470px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .centered-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-family: Arial, Helvetica, sans-serif;
    padding: 5%;
  }
  
  .right-side {
    flex: 1 1 300px;
    width: auto;
    background-color: #f0f0f0;
  }
  
  .full-image {
    height: 100vh;
    width: auto;
  }