@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,slnt,wdth,wght@6..144,-10..0,87.5,500&display=swap');

html {
  /* Path to your image file */
  background-image: url(../img/background.jpg); 

  /* Center the image vertically and horizontally */
  background-position: center top; 

  /* Prevent the image from tiling/repeating */
  background-repeat: no-repeat; 

  /* Scale the image to cover the entire page */
  background-size: cover; 

  /* Lock the image in place so it stays fixed while scrolling */
  background-attachment: fixed; 

  /* Ensure the element spans the full browser window */
  min-height: 100%;

  background-color: #100f17; 	
}

body {
  display: grid;
  place-items: center; /* Centers both horizontally and vertically */
  min-height: 100vh;   /* Takes up full screen height */
  margin: 0; 
  /* Removes default browser margins */	
  backdrop-filter: blur(60px); 
}

img {
	max-width: 400px;
	width: 100%;
}

p {
	color: #FFF;
	text-align: center;
	height: 100px;
	font-size: 18px;
}

p span {
	background: rgba(255, 255, 255, .035);
	display: inline-block;
	width: 100%;
	max-width: 290px;
	padding: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-transform: uppercase;
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;	
    font-variation-settings:
      "slnt" 0,
      "wdth" 87.5,
      "GRAD" 0,
      "ROND" 0;		
}

p span:hover {
	color: #ebaf00;
	border-bottom: 2px solid #000;
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;	
	text-shadow: 0px 1px 0px #000000;
    font-variation-settings:
      "slnt" -6,
      "wdth" 87.5,
      "GRAD" 0,
      "ROND" 0;		
}

a {
	text-decoration: none;
	color: #FFF;
}

a:hover {
	color: #ebaf00;
}

.request-container {
	background: rgba(255, 255, 255, .035);
	max-width: 290px;
	display: block;
	text-align: center;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-transform: uppercase;
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;	
    font-variation-settings:
      "slnt" 0,
      "wdth" 87.5,
      "GRAD" 0,
      "ROND" 0;	
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 2px;
}

.request-container:hover {
	border-bottom: 2px solid #fabe04;
	margin-bottom: 0px;
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;	
	text-shadow: 0px 1px 0px #000000;
    font-variation-settings:
      "slnt" -6,
      "wdth" 87.5,
      "GRAD" 0,
      "ROND" 0;		
}

.hover-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  height: 100%;
}

/* Hide the image by default right after the text */
.hover-image {
  position: absolute;
  left: 105%; /* Positions the image just past the end of the text */
  top: 50%;
  transform: translateY(-50%);
  width: 100px; /* Adjust size as needed */
  height: auto;
  
  /* Smooth visibility transition */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 20px;
}

/* Trigger the effect when the parent container is hovered */
.hover-container:hover .hover-image {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1.05); /* Slight pop-in effect */
}