@font-face {
  font-family: "Northwell";
  src: url("./font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #000;
  background-image: url("fondo.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  font-family: "Northwell", "Georgia", serif;
  text-align: center;
}

.main {
  flex: 1;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 90%;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portrait {
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

blockquote {
  font-size: 3rem;
  color: #3b3b3b;
  margin-top: 10px;
}

footer {
  padding: 10px 0;
  text-align: center;
  color: #ba935f;
  background-color: transparent;
  font-size: 1.2rem;
}

footer a {
  color: #aa794e;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #3e2812;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  blockquote {
    margin-top: 40px;
  }
}
