
@import url('https://fonts.googleapis.com/css2?family=Grandiflora+One&display=swap');

@font-face {
  font-family: "Funky Fresh";
  src: url("/assets/fonts/Funkyfresh.ttf");
}

.funky-fresh {
    font-family: "Funky Fresh", sans-serif;
    letter-spacing: .07em;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
  }

  .grandiflora-one-regular {
    font-family: "Grandiflora One", cursive;
    font-weight: 400;
    font-style: normal;
  }

.bg-head {
  background-image: url('/assets/images/edif-f.jpg');
  position: relative; 
  height: 85vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}

.bg-head::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0,0,0,0.25);
}

h1 {
  position: relative;
  color: #ffffff;  
  font-size: 6rem;
  text-align: center;
}

h2 {
  position: relative;
  color: #ffffff;  
  font-size: 3rem;
  text-align: center;
}

.card-title {
  font-family: "Grandiflora One", cursive;
  font-size: 3rem;
}

.card {
width: 35rem;
}

iframe {
  max-width: 30rem;
  height: 14rem;
}

 /* Extra small devices (phones, 600px and down) */
 @media only screen and (max-width: 600px) {
  .bg-head {
    height: auto;
    background-position: center bottom;
    background-size: cover;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }
  .card {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    }
 }

 /* Small devices (portrait tablets and large phones, 600px and up) */
 @media only screen and (min-width: 600px) {
  .bg-head {
    height: auto;
    background-position: center bottom;
    background-size: cover;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }
  .card {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    }
 }
 
 /* Medium devices (landscape tablets, 768px and up) */
 @media only screen and (min-width: 768px) {
  .bg-head {
    height: 100vh;
    background-position: center bottom;
    background-size: cover;
  }

  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3rem;
  }
  .card {
    width: 14rem;
    margin: .5rem;
    }
 }
 
 /* Large devices (laptops/desktops, 992px and up) */
 @media only screen and (min-width: 992px) {
  .bg-head {
    height: 100vh;
    background-position: center bottom;
    background-size: cover;
  }

  h1 {
    font-size: 6rem;
  }

  h2 {
    font-size: 3rem;
  }
  .card {
    width: 18rem;
    margin: .5rem;
    }
 }
 
 /* Extra large devices (large laptops and desktops, 1200px and up) */
 @media only screen and (min-width: 1200px) {
  .bg-head {
    height: 100vh;
    background-position: center bottom;
    background-size: cover;
  }

  h1 {
    font-size: 6rem;
  }

  h2 {
    font-size: 3rem;
  }
  .card {
    width: 24rem;
    }
    
 } 