/* reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #262b2d;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.box {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}

.about {
  margin: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.contact {
  margin: 1.5rem 0;
}

.link {
  color: #00aaff;
  text-decoration: none;
  margin: 0 0.75rem;
  font-size: 1.1rem;
}

.link:hover { text-decoration: underline; }

.fb {
  width: 36px;
  height: 36px;
  fill: #fff;
  margin-top: 1rem;
  transition: fill .2s;
}

.fb:hover { fill: #00aaff; }