/* Google Font for Headings */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    position: relative;
}

/****************************
all text within a paragraph tag (p)
****************************/
/* p {
    text-align: center;
    animation: slideUp 1s ease-out;
    animation-fill-mode: forwards;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    margin: 0;
} */

/****************************
all text within a link tag (a)
****************************/
a {
    color: #FFD700;
    text-decoration: none;
}

a:hover {
    color: #f558e8;
    text-decoration: underline;
}

@keyframes fadeInGradient {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* h2 Header Styles */
h2 {
    font-size: 2.5rem;
    color: #554275;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 650px) {
    h2 {
        font-size: 1.0rem;
    }
}
   
/****************************
Animation
****************************/
header h1 {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes slideUp {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
  }