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

:root {
  font-family: Anton, Arial, sans-serif;
  color: white;
  width: 100%;
}

body {
  --content-width: min(100%, 500px);
  margin: 0;
  display: grid;
  place-content: center;
  background-color: black;
  max-width: 100%;
  height: 100%
}

main {
  height: 100svh;
  max-width: var(--content-width);
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
}

#text-section {
  width: 100%;
  height: 75%;
  grid-area: 1 / 1 / 2 / -1 ;
  align-self: stretch;
  display: grid;
  place-content: center space-between;
  justify-items: center;

  background-image: url('./img/nlya-worship-night.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.maps {
  border: 1px solid white;
  border-radius: 1em;
  font-size: 10pt;
  width: fit-content;
  display: grid;
  grid-template-columns: auto 1fr;
  color: white;
  background-color: #404040;
  padding: 0.125em 1em;
  text-decoration: none;
  text-align: left;
  margin: auto;
  gap: 0.5em;
  line-height: 1.4;
  align-items: center;
}

.maps img {
  margin: auto;
  height: 2em;
}

#pass-links {
  width: 100%;
  height: 25%;
  grid-area: 2 / 1 / 3 / -1 ;
  justify-self: stretch;
  padding: 2em 0;
  display: grid;
  justify-items: stretch;
  align-content: start;
  gap: 8px;
}

#pass-links > a {
  cursor: pointer;
  text-decoration: none;
}

#social-links {
  display: flex;
  place-content: center;
  gap: 2em;
}

#social-links img {
  height: 2em;
  width: 2em;
  background-size: contain;
  border-radius: 25%;
}
