@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background: url('backgroundRGBaddB.png') no-repeat center center fixed;
    background-size: cover;
}

.splash-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    text-align: center;
    /*background: radial-gradient(circle, rgba(255, 255, 255, 0.70) 10%, rgba(0, 0, 0, 0.25) 70%);*/
    padding: 20px;
    box-sizing: border-box;
}
.lower-third {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.header .logo {
    width: 150px;
    height: auto;
    margin: 20px auto;
}

.content h1 {
    font-size: 3rem;
    color: #00509e;
    margin: 20px 0;
}

/* Blue Glow Animation */
@keyframes pulseBlue {
  0%,
  100% {
    color: #00f;
    text-shadow: 0 0 5px #00f, 0 0 10px #00f, 0 0 15px #0ff;
  }
  50% {
    color: #66f;
    text-shadow: 0 0 15px #66f, 0 0 25px #0ff, 0 0 35px #0ff;
  }
  99% {
    color: #fff;
    text-shadow: none;
  }
  100% {
    color: #fff;
    text-shadow: none;
}

.blue-glow {
  font-size: 3em;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  animation: pulseBlue 3s ease-in-out 3 forwards;
  text-align: center;
  margin-top: 20px;
}

}

.blue-glow {
    font-size: 3em;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    animation: pulseBlue 3s ease-in-out 3 forwards;
    text-align: center;
    margin-top: 20px;
}

.content p {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #fff;
}

.cta-button {
    background-color: #00509e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #003f7f;
}

.footer {
    font-size: 0.9rem;
    color: #666;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .blue-glow {
        font-size: 2em;
    }
}

/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Content Box */
.modal-content {
    background-color: #b4b4b4;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Close Button */
.close {
    color: #f9f9f9;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}
