
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

:root {
  --i2d-blue: #23A5D8;
}


html {
  color: #5D6163;
  font-size: 1em;
  line-height: 1.3;

  font-family: sans-serif, Roboto;
}

.container {
  width: 100%;
  max-width: 900px;
  background: #fff;
  margin: 0 auto;
}

.logo {
  width: 300px;
}

.logo img {
  width: 100%
}

.content {
  text-align: center;
  margin-top: 100px;
}

.contact {
  margin-top: 100px;
}

.contact table {
  margin: 0 auto;
  text-align: left;
}

.contact td {
  padding: 5px 10px;
}

.contact a {
  color: var(--i2d-blue);
  color: #23A5D8;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.bottom-right-logo-img {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 150px;
  opacity: 0.2;
}



