/*
Copyright 2020 Trimble Inc. All Rights Reserved.
Author: ben@sketchup.com (Ben Ryding)
*/

html, body {
  margin: 0;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  background-color: #F3F3F7; /* col_gray_light from sketchup web */
}

.main {
  display: flex;
  height: 100%;
}

.background-image {
  object-fit: cover;
  min-width: 150px;
  flex: 1.5;
}

.content {
  flex: 1;
}

.content, .info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sketchup-logo .info-text {
  flex: 1;
}

.sketchup-logo {
  width: 150px;
  margin-bottom: 48px;
}

.info-text p {
  text-align: center;
  color: #363545; /* Trimble dark grey */
}

.bolded-text {
  font-weight: 900;
  font-size: 24px;
}

.text-container {
 width: 60%;
}

.normal-text {
  font-size: 16px;
}