/*GFonts*/
.outfit-font {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/*Site*/
/* CSS Document */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input:focus, select:focus, textarea:focus, button:focus {
  outline: none;
}
body {
  background-image: url('/img/fnf.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 80%;
}
h1 {
  color: #52D1E3;
  font-weight: 200;
  line-height: 1em;
  font-size: clamp(2.6rem, 4vw, 4rem);
}
h2 {
  color: #616161;
  font-weight: 200;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
}
h1, h2 {
  margin: 0;
}
article {
  width: 100%;
  display: flex;
  justify-content: center; /* Aligns horizontally */
  align-items: center; /* Aligns vertically */
  height: 100vh; /* Full viewport height */
}
article div {
  width: 20vw;
}
button {
  border: 0;
  padding: 0;
  color: #fff;
  margin: 2em 0;
  width: 100%;
  text-align: left;
  font-size: clamp(1rem, 1vw, 1rem);
  background: #52D1E3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 3em;
	 transition: background-color 0.3s ease;
}
button:hover{ background: #616161; cursor: pointer;}
button img {
  max-height: 100%;
  height: 26px;
  margin-right: 8px;
  padding: 1em 0 1em .5em;
}
button span:last-child {
  margin-left: auto; /* Push the last item to the end */
  border-left: 2px solid #fff;
  padding: 1em;
}
/*48 - Mobile*/
@media only screen and (max-width : 30em) {
  body {
    background-image: url('/img/fnf.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 160%;
  }
  article div {
    width: 60vw;
  }
}
/*landscape*/
@media only screen and (min-width: 30em) and (max-width : 54em) {
  body {
    background-image: url('/img/fnf.jpg');
    background-repeat: no-repeat;
    background-position:center -100px;
    background-size: 100%;
  }
  article div {
    width: 40vw;
  }
}