@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Montserrat:wght@300&display=swap");

* {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  margin: auto;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
  height: 100vh;
  background-image: url(./assets/background_lg.jpg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-origin: padding-box;
  background-position-y: center;
  background-size: cover;
  font-size: .90em;
}

.thePage {
  width: 80%;
}

.logo > img {
  margin-top: -100px;
  align-content: center;
  width: 100%;
}

.logoSm {
  display:none;
}

.contactUsA {
  display: block;
  width: 25%;
}

.contactUsText {
  font-family: 'Cormorant Garamond', sans-serif;
  display: block;
  width: 25%;
  color: #F0EAE2;
  font-size: 3vw;
  padding-left: 4%;
}

.contactUsEmail {
  display: block;
  width: 25%;
  font-size: 1.6vw;
  color: #F0EAE2;
  letter-spacing: 1px;
  padding-left: 1%;
}

.contactUsEmail a {
  color: #F0EAE2;
  text-decoration: none;
}

.copyright {
  color: #F0EAE2;
  position: absolute;
  bottom: 30px;
}

@media screen and (max-width: 1080px) {
    .container {
        background-image: url(./assets/background_md.jpg);
    }
    .contactUsEmail {
      width: 25%;
    }
}

@media screen and (max-width: 600px) {
  .container{
    background-image: url(./assets/background_sm.jpg);
    font-size: .70em;
  }
  .logoLg {
    display: none;
  }
  .logoSm {
    display: block;
  }
  .logo > img {
    margin-top: -150px;
    align-content: center;
    width: 80%;
  }
  .contactUsA {
    display: block;
    width: 60%;
  }
  .contactUsText {
    display: block;
    width: 60%;
    font-size: 8vw;
    padding-left: 7%;
  }
  
  .contactUsEmail {
    display: block;
    width: 62%;
    font-size: 4vw;
    letter-spacing: 1px;
  }

  .copyright {
    bottom: 20px;
  }
}
