/* Skinny sans-serif font and matched background color */
body {
  margin: 0;
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  background-color: #EDE7E3;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  width: 100%;
  height: 100%;
}

.links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 5vw;
  padding-right: 5vw;
  gap: 2rem;
}

.links a {
  font-size: 2rem;
  text-decoration: none;
  color: #333;
  font-weight: 300;
}

.image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: none;
  border: none;
}
