#component {
  display: flex;
  flex: 1;
  flex-direction: column;
  max-width: 1130px;
  padding: 100px 15px 100px 15px;
  width: 100%;
  > h2 {
    border-bottom: 2px solid var(--colorGreyFontHover);
    margin: 35px 0px 10px 0px;
    padding: 0px 0px 10px 0px;
  }
  > img {
    background-color: white;
    border-radius: 5px;
    box-shadow: 1px 1px 3px var(--colorBlue);
    max-width: 500px;
    padding: 10px 10px 10px 10px;
    width: 100%;
    ~ p:nth-of-type(1) {
      font-family: 'Roboto Italic', sans-serif;
      font-size: 1rem;
      font-style: italic;
      margin: 5px 0px 40px 0px;
    }
  }
  > p {
    margin: 5px 0px 5px 0px;
    > span {
      color: var(--colorGreen);
      font-family: 'Roboto Black', sans-serif;
      font-size: 2rem;
      line-height: 1;
    }
  }
}
#component-image-bottom {
  background-image: url('/img/storage-hall.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vw * 0.2);
  max-height: 300px;
  min-height: 200px;
  position: relative;
  width: 100%;
  &::before {
    content: '';
    background-color: var(--colorBlue);
    inset: 0;
    opacity: 0.5;
    position: absolute;
  }
}
