@import url('https://fonts.googleapis.com/css2?family=Geo:ital@0;1&display=swap');

body {
  font-family: "Geo", sans-serif;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  background: rgba(0,0,0,0.6);
}

.logo {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-size: 1.1em;
  transition: color 0.2s;
}
nav a.active,
nav a:hover {
  color: #ff00cc;
}

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

.social.icons {
  text-align: center;
  margin-top: 40px;
}

.social.icons a {
  color: #fff;
  margin: 0 12px;
  font-size: 2em;
  text-decoration: none;
  transition: color 0.2s;
}
.social.icons a:hover {
  color: #ff00cc;
}

