/* DNA Color Scheme */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700,900&display=swap");
.screenUnsupported {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #F0F0F0;
}
.screenUnsupported * {
  font-family: "Roboto", sans-serif;
}

.screenUnsupported__table {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-collapse: separate;
  border-spacing: 0;
}
.screenUnsupported__table > tbody > tr > td {
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

.screenUnsupported__card {
  width: 100%;
  max-width: 600px;
  min-height: 320px;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin: auto;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.screenUnsupported__card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.screenUnsupported__card-header__title {
  font-size: 2rem;
  font-weight: 900;
}

.screenUnsupported__browser-table {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-collapse: separate;
  border-spacing: 0;
}
.screenUnsupported__browser-table > tbody > tr > td {
  text-align: center;
  vertical-align: middle;
}

.screenUnsupported__browser-item {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 33.3%;
}
.screenUnsupported__browser-item a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #4285F4;
  outline: none;
  transition: 0.3s ease-in-out;
  padding: 1rem;
  border-radius: 1rem;
}
.screenUnsupported__browser-item a:hover {
  background-color: #e0e0e0;
}
.screenUnsupported__browser-item a img {
  width: 100%;
  max-width: 100px;
  height: auto;
  outline: none;
  border: none;
}
.screenUnsupported__browser-item a span {
  margin-top: 1rem;
  display: block;
}