/* Font */
@font-face {
  font-family: "Santana-Black";
  src: url("assets/fonts/Santana-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Page background */
body {
  margin: 0;
  padding: 0;
  background-color: #1a1a1a; /* darker grey */
  color: #e6e6e6;
  font-family: "Santana-Black", sans-serif;
  height: 100vh;
  overflow: hidden;
}

/* Logo */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #444; /* line under logo */
}

/* Logo image */
.logo img {
  height: 60px;
  width: auto;
  cursor: pointer;
  display: block;
}

/* Center content */
.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h1 {
  font-size: 52px;
  margin: 0;
  text-transform: lowercase;
  letter-spacing: 1px;
}

p {
  font-size: 20px;
  margin-top: 10px;
  opacity: 0.75;
}
