/* styles.css */

/* Import Google Font */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');*/ /*Poppins placeholder*/
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600&display=swap');

@media (max-width: 767px) {
    /* Styles for mobile devices */
    .container {
      width: 100%;
      padding: 10px;
    }
  }
  
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Exo 2', sans-serif;
    background-color: #0d0d0d; /* Dark, almost black background */
    text-align: center;
}

h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #2e3b4e, #3f4e67, #2e3b4e); /* Cool, deep blue gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 1s, text-shadow 1s;
    text-shadow: 0px 0px 8px rgba(47, 72, 88, 0.5); /* Soft shadow for atmospheric effect */
    opacity: 0.85;
    margin: 5px;
}

h1:hover {
    transform: scale(1.08);
    text-shadow: 0px 0px 12px rgba(113, 194, 220, 0.5);    /* Subtle teal glow on hover */
}

h2 {
    font-size: 3rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #2e3b4e, #3f4e67, #2e3b4e); /* Cool, deep blue gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 5px rgba(47, 72, 88, 0.5); /* Soft shadow for atmospheric effect */
    opacity: 0.85;
    margin: 5px;
}

p {
    font-size: 1.5rem;
    margin: 5px 0;
    color: #8a9ba8;
}

a {
    background: linear-gradient(90deg, #354f52, #52796f, #354f52); /* Dark teal gradient for links */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

a:hover {
    background: linear-gradient(90deg, #6c9a8b, #89b2a3, #6c9a8b); /* Brighter teal gradient on hover */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
