@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

html, body {
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: #260d0c;
  overflow-x: hidden;
}

.main-container {
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.nav-container {
  color: rgb(228, 212, 212);
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: solid rgb(109, 95, 95) 1px;
  top: 0;
  width: 100%;
  z-index: 1;
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.nav-container #name {
  font-size: 2.5rem;
  font-family: "Alex Brush", cursive;
  color: rgb(228, 212, 212);
  text-decoration: none;
}

body {
  margin: 0;
  background: #260d0c;
  background-image: url(kelsey-he-TaZgnL-7C0o-unsplash.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  font-family: "Red Hat Display", sans-serif;
}

.content-box {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(255, 255, 255);
  min-height: min-content;
  width: 70%;
  margin: 3rem;
  border-radius: 12px;
  font-size: 1.4rem;
  line-height: 2;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
  rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
  rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  flex: 0 0 auto;
  border: solid white 1px;
}

img.photo {
  max-width: 90%;
  max-height: 30rem;
  margin-bottom: 4rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, 
  rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, 
  rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-radius: 12px;
}

.text {
  max-width: 100%;
  width: 40rem;
  margin-top: -2rem;
  padding: 2rem;
}

.text p {
  margin: 0;
}

.info {
  box-sizing: border-box;
  max-width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
  justify-content: center;
}

.map {
  max-width: 90%;
  padding: 2rem;
}

.logo-container {
  text-align: center;
}

.logo-container h1 {
  font-family: "Alex Brush", cursive;
  font-size: 7rem;
  font-weight: 400;
  margin: 0;
  height: 10.2rem;
}

.logo-container img {
  width: 100%
}

.logo-container p {
  margin: 0 0 3rem 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
}

footer {
  color: rgb(228, 212, 212);
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: solid rgb(109, 95, 95) 1px;
  padding: 1.5rem;
  text-align: center;
  flex-grow: 0;
  flex-shrink: 0;
}

::selection {
  color: white;
  background-color: rgb(163, 110, 117);
}

@media screen and (width <= 600px) {
  .content {
    width: 94%;
  }
  .logo-container h1 {
    font-size: 5rem;
    height: 8rem;
  }

  .logo-container p {
    margin: 0;
  }

  .map {
    visibility: collapse;
  }
}