#flexContainer{
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content:center;
    gap: 10%;
}

html, body{
    margin: 0;
    height: 100%;
}

button {
  height: 50px;
  padding: 5px;
  background-color: #4285f4;
  border-radius: 10px;
  box-shadow: inset -2px -2px 5px 0px rgba(0,0,0,0.75), 2px 2px 5px 0px rgba(0,0,0,0.75), inset 2px 2px 5px 0px rgba(255,255,255,0.75);
  border: #4285f4;
  display: flex;
  cursor: pointer;
  transition: box-shadow 0.25s;
}

button:hover {
  transition: box-shadow 0.25s;
  box-shadow: inset 2px 2px 5px 0px rgba(0,0,0,0.75), 0 0 0 0 rgba(0,0,0,0), inset -2px -2px 5px 0px rgba(255,255,255,0.75);
}

  #googleImageWrapper {
    height: 100%;
    aspect-ratio: 1 / 1;
    display: inline-block;
  }
  img {
    height: 100%;
    width: auto;
  }
  .textContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 5px;
    color: white;
  }