@import url('/css/fontawesome/fontawesome.min.css');
@import url('/css/fontawesome/brands.min.css');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121212;
  color: #ffffff;
  font-family: 'Open Sans', ui-sans-serif, Arial, sans-serif;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 150px;
  height: 150px;
  background: url('/img/logo.png') no-repeat center/contain;
  margin-bottom: 20px;
}

.text {
  font-size: 2em;
  font-weight: 600;
}

.social-icons {
  margin: 20px 0;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50%;
  color: #121212;
  text-decoration: none;
  font-size: 1.2em;
  transition: background-color 0.3s, color 0.3s;
}

.social-icons a:hover {
  background-color: #1a73e8;
  color: #ffffff;
}

footer {
  margin-top: 20px;
  font-size: 0.9em;
  color: #bbbbbb;
}