body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  background-color: #000000;
  font-weight: 500;
  font-style: normal;
  color: #e0e0e0; /* light grey text */
  text-align: center;
  display: flex;
  justify-content: center; 
  align-items: center; 
  height: 100vh;
}

.container {
  padding: 10vh 2vh;
  margin: auto;
}

.cover {
  width: 100%;
  max-width: 60vh;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

h1 {
  font-size: 32px;
  font-weight: 500;
  margin: 2vh 0;
  color: #ffffff; 
}

p {
  color: #cccccc; /* medium light grey */
}

.links a, .socials a {
  text-decoration: none;
  color: #d9cfac; 
}

.links a:hover, .socials a:hover {
  color: #ffffff; 
  font-style: bold;
}

/* Mobiles */
@media (max-width: 600px) {
h1 {
  font-size: 26px;
}
}