@media screen and (max-width: 1024px) {
  /* Resume Main Container */
  .resume-container {
    display: flex;
    flex-direction: column;
    position: relative;

    width: 100%;
    height: auto;
    padding: 20px;
    overflow: auto;
  }

  .outerDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    width: 100%;
    height: auto;
    padding: 15px;

    background-color: var(--div-background-color);
    border-radius: 15px;
    box-sizing: border-box;
  }

  #innerDiv {
    padding: 0;
  }

  .outerDiv iframe {
    width: 100%;
    height: 77vh;
    border: none;
    border-radius: 7px;
    background-color: var(--div-background-color);
    box-sizing: border-box;
    object-fit: cover;
    overflow: hidden;
  }
}
